Searched refs:ThreadReference (Results 1 - 25 of 130) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMonitorInfo.java43 * @see ThreadReference#ownedMonitorsAndFrames
58 * @see ThreadReference#ownedMonitorsAndFrames
63 * Returns a {@link ThreadReference} object for the thread that
65 * @return a {@link ThreadReference} object for the thread that
70 * @see ThreadReference#frame
72 ThreadReference thread();
H A DThreadGroupReference.java61 * suspended as described in {@link ThreadReference#suspend}.
75 * resumed as described in {@link ThreadReference#resume}.
81 * Returns a List containing a {@link ThreadReference} for each live thread
86 * @return a List of {@link ThreadReference} objects mirroring the
89 List<ThreadReference> threads();
H A DObjectReference.java160 * is suspended through {@link ThreadReference#suspend}.
204 * {@link ThreadReference#suspend}. This is done to prevent the deadlocks
208 * {@link ThreadReference#resume}, so if the thread's suspend
271 Value invokeMethod(ThreadReference thread, Method method,
338 * Returns a List containing a {@link ThreadReference} for
340 * See {@link ThreadReference#currentContendedMonitor} for
348 * @return a List of {@link ThreadReference} objects. The list
356 List<ThreadReference> waitingThreads()
360 * Returns an {@link ThreadReference} for the thread, if any,
362 * See {@link ThreadReference#ownedMonitor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadAction.java42 ThreadAction(ThreadReference thread, int id) {
46 ThreadReference thread() {
47 return (ThreadReference)getSource();
H A DVMAction.java41 ThreadReference resumingThread;
49 VMAction(VirtualMachine vm, ThreadReference resumingThread, int id) {
61 ThreadReference resumingThread() {
H A DMonitorInfoImpl.java39 ThreadReference thread;
85 public ThreadReference thread() {
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DClassPrepareEvent.java61 * @return a {@link ThreadReference} which mirrors the event's thread in
64 public ThreadReference thread();
H A DMonitorContendedEnterEvent.java49 * @return a {@link ThreadReference} which mirrors the event's thread in
52 public ThreadReference thread();
H A DMonitorContendedEnteredEvent.java48 * @return a {@link ThreadReference} which mirrors the event's thread in
51 public ThreadReference thread();
H A DMonitorWaitEvent.java47 * @return a {@link ThreadReference} which mirrors the event's thread in
50 public ThreadReference thread();
H A DMonitorWaitedEvent.java47 * @return a {@link ThreadReference} which mirrors the event's thread in
50 public ThreadReference thread();
H A DThreadDeathEvent.java43 * @see ThreadReference
52 * @return a {@link ThreadReference} which mirrors the event's thread in
55 public ThreadReference thread();
H A DThreadStartEvent.java50 * @see ThreadReference
59 * @return a {@link ThreadReference} which mirrors the event's thread in
62 public ThreadReference thread();
H A DVMStartEvent.java50 * @return a {@link ThreadReference} which mirrors the event's thread in
53 public ThreadReference thread();
H A DLocatableEvent.java44 * @return a {@link ThreadReference} which mirrors the event's thread in
47 public ThreadReference thread();
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DThreadDeathRequest.java57 void addThreadFilter(ThreadReference thread);
H A DThreadStartRequest.java57 void addThreadFilter(ThreadReference thread);
H A DBreakpointRequest.java66 void addThreadFilter(ThreadReference thread);
H A DExceptionRequest.java93 void addThreadFilter(ThreadReference thread);
H A DMethodEntryRequest.java57 void addThreadFilter(ThreadReference thread);
H A DMethodExitRequest.java57 void addThreadFilter(ThreadReference thread);
H A DMonitorContendedEnterRequest.java58 void addThreadFilter(ThreadReference thread);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadIterator.java38 import com.sun.jdi.ThreadReference;
42 public class ThreadIterator implements Iterator<ThreadReference> {
43 Iterator<ThreadReference> it = null;
67 public ThreadReference next() {
71 public ThreadReference nextThread() {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadIterator.java38 import com.sun.jdi.ThreadReference;
42 class ThreadIterator implements Iterator<ThreadReference> {
43 Iterator<ThreadReference> it = null;
70 public ThreadReference next() {
74 public ThreadReference nextThread() {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMonitorInfoImpl.java40 ThreadReference thread;
44 ThreadReference thread, int dpth) {
67 public ThreadReference thread() {

Completed in 102 milliseconds

123456