Searched defs:ThreadContext (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DThreadContext.java36 public interface ThreadContext { interface
/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/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);

Completed in 1055 milliseconds