Searched refs:ThreadContext (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DThreadContext.java42 * ThreadContext oldContext = ThreadContext.push(myKey, myObject);
43 * // plus possibly further calls to ThreadContext.push...
47 * ThreadContext.restore(oldContext);
57 * <code>ThreadContext.get(myKey)</code>. The result is the
65 public class ThreadContext implements Cloneable { class in inherits:Cloneable
69 At the tail of the list is a sentinel ThreadContext value with
92 ThreadContext objects are immutable. As a consequence, you can
93 give a ThreadContext object to setInitialContext that is no
99 private /*final*/ ThreadContext previou
103 private ThreadContext(ThreadContext previous, String key, Object value) { method in class:ThreadContext
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DThreadProxy.java56 public ThreadContext getContext() throws IllegalThreadStateException;
61 /** Sets the context for the given thread. The passed ThreadContext
68 public void setContext(ThreadContext context)
H A DThreadContext.java36 public interface ThreadContext { interface
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxThread.java64 public ThreadContext getContext() throws IllegalThreadStateException {
66 ThreadContext context = LinuxThreadContextFactory.createThreadContext(debugger);
77 public void setContext(ThreadContext context)
H A DLinuxThreadContextFactory.java35 static ThreadContext createThreadContext(LinuxDebugger dbg) {
49 "ThreadContext");
51 return (ThreadContext)ctcc[0].newInstance(dbg);
H A DLinuxCDebugger.java111 ThreadContext context = (ThreadContext) thread.getContext();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdThread.java66 public ThreadContext getContext() throws IllegalThreadStateException {
68 ThreadContext context = BsdThreadContextFactory.createThreadContext(debugger);
79 public void setContext(ThreadContext context)
H A DBsdThreadContextFactory.java32 static ThreadContext createThreadContext(BsdDebugger dbg) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/amd64/
H A DProcAMD64Thread.java50 public ThreadContext getContext() throws IllegalThreadStateException {
66 public void setContext(ThreadContext context)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/sparc/
H A DProcSPARCThread.java50 public ThreadContext getContext() throws IllegalThreadStateException {
66 public void setContext(ThreadContext context)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/x86/
H A DProcX86Thread.java50 public ThreadContext getContext() throws IllegalThreadStateException {
71 public void setContext(ThreadContext context)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/amd64/
H A DWindbgAMD64Thread.java50 public ThreadContext getContext() throws IllegalThreadStateException {
63 public void setContext(ThreadContext thrCtx)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ia64/
H A DWindbgIA64Thread.java60 public ThreadContext getContext() throws IllegalThreadStateException {
73 public void setContext(ThreadContext thrCtx)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/x86/
H A DWindbgX86Thread.java50 public ThreadContext getContext() throws IllegalThreadStateException {
63 public void setContext(ThreadContext thrCtx)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/amd64/
H A DAMD64ThreadContext.java34 public abstract class AMD64ThreadContext implements ThreadContext {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64Thread.java41 public ThreadContext getContext() throws IllegalThreadStateException {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThread.java41 public ThreadContext getContext() throws IllegalThreadStateException {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86Thread.java41 public ThreadContext getContext() throws IllegalThreadStateException {
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DJvmContextFactory.java104 com.sun.jmx.snmp.ThreadContext.get("SnmpUserData");
/openjdk7/jdk/src/share/classes/sun/net/spi/nameservice/dns/
H A DDNSNameService.java54 private static ThreadLocal<SoftReference<ThreadContext>> contextRef =
58 private static class ThreadContext { class in class:DNSNameService
62 public ThreadContext(DirContext dirCtxt, List<String> nsList) { method in class:DNSNameService.ThreadContext
78 SoftReference<ThreadContext> ref = contextRef.get();
79 ThreadContext thrCtxt = null;
142 thrCtxt = new ThreadContext(dirCtxt, nsList);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteThread.java50 public void setContext(ThreadContext context)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/sparc/
H A DSPARCThreadContext.java35 public abstract class SPARCThreadContext implements ThreadContext {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/x86/
H A DX86ThreadContext.java34 public abstract class X86ThreadContext implements ThreadContext {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubNextRequestHandler.java52 import com.sun.jmx.snmp.ThreadContext;
105 final ThreadContext oldContext =
106 ThreadContext.push("SnmpUserData",data);
119 ThreadContext.restore(oldContext);
H A DSnmpSubBulkRequestHandler.java50 import com.sun.jmx.snmp.ThreadContext;
53 import com.sun.jmx.snmp.ThreadContext;
96 final ThreadContext oldContext =
97 ThreadContext.push("SnmpUserData",data);
107 ThreadContext.restore(oldContext);

Completed in 2004 milliseconds

12