Searched defs:ThreadInfo (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java41 public class ThreadInfo { class
58 ThreadInfo (ThreadReference thread) { method in class:ThreadInfo
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DThreadListPanel.java60 static class ThreadInfo { class in class:ThreadListPanel
69 public ThreadInfo(ThreadProxy thread, CDebugger dbg, JavaThread jthread) { method in class:ThreadListPanel.ThreadInfo
102 // List<ThreadInfo>
135 threadList.add(new ThreadInfo(thr, dbg, jthr));
159 ThreadInfo info = (ThreadInfo) threadList.get(row);
212 ThreadInfo info = (ThreadInfo) threadList.get(i);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java45 class ThreadInfo { class
46 // This is a list of all known ThreadInfo objects. It survives
47 // ThreadInfo.invalidateAll, unlike the other static fields below.
48 private static List<ThreadInfo> threads = Collections.synchronizedList(new ArrayList<ThreadInfo>());
51 private static ThreadInfo current = null;
57 private ThreadInfo(ThreadReference thread) { method in class:ThreadInfo
60 MessageOutput.fatalError("Internal error: null ThreadInfo created");
67 threads.add(new ThreadInfo(thread));
76 ThreadInfo t
[all...]
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DThreadInfo.java34 * Thread information. <tt>ThreadInfo</tt> contains the information
81 * <tt>ThreadInfo</tt> is mapped to a {@link CompositeData CompositeData}
92 public class ThreadInfo { class
114 * Constructor of ThreadInfo created by the JVM
126 private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, method in class:ThreadInfo
137 * Constructor of ThreadInfo created by the JVM
153 private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, method in class:ThreadInfo
202 * Initialize ThreadInfo object
258 * Constructs a <tt>ThreadInfo</tt> object from a
261 private ThreadInfo(CompositeDat method in class:ThreadInfo
[all...]

Completed in 55 milliseconds