Home
last modified time | relevance | path

Searched refs:ThreadReference (Results 1 – 25 of 92) sorted by relevance

1234

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DThreadReferenceImpl.java34 implements ThreadReference, VMListener {
67 JDWP.ThreadReference.Status status = null;
168 name = JDWP.ThreadReference.Name.process(vm, this) in name()
194 JDWP.ThreadReference.Suspend.process(vm, this); in suspend()
216 stream = JDWP.ThreadReference.Resume.enqueueCommand(vm, this); in resume()
219 JDWP.ThreadReference.Resume.waitForReply(vm, stream); in resume()
234 return JDWP.ThreadReference.SuspendCount.process(vm, this).suspendCount; in suspendCount()
251 JDWP.ThreadReference.Stop.process(vm, this, in stop()
260 JDWP.ThreadReference.Interrupt.process(vm, this); in interrupt()
266 private JDWP.ThreadReference.Status jdwpStatus() { in jdwpStatus()
[all …]
DThreadAction.java43 ThreadAction(ThreadReference thread, int id) { in ThreadAction()
47 ThreadReference thread() { in thread()
48 return (ThreadReference)getSource(); in thread()
DThreadGroupReferenceImpl.java89 for (ThreadReference thread : threads()) { in suspend()
99 for (ThreadReference thread : threads()) { in resume()
133 public List<ThreadReference> threads() { in threads()
134 return Arrays.asList((ThreadReference[])kids().childThreads); in threads()
DVMAction.java43 ThreadReference resumingThread;
51 VMAction(VirtualMachine vm, ThreadReference resumingThread, int id) { in VMAction()
63 ThreadReference resumingThread() { in resumingThread()
DVMState.java52 List<ThreadReference> threads = null; // cached Threads
130 synchronized void thaw(ThreadReference resumingThread) { in thaw()
191 List<ThreadReference> allThreads() { in allThreads()
192 List<ThreadReference> threads = null; in allThreads()
201 threads = Arrays.asList((ThreadReference[])JDWP.VirtualMachine.AllThreads. in allThreads()
DEventSetImpl.java171 private ThreadReference thread;
174 int requestID, ThreadReference thread) { in ThreadedEventImpl()
179 public ThreadReference thread() { in thread()
194 ThreadReference thread, Location location) { in LocatableEventImpl()
493 ThreadReference thread, Location location, in WatchpointEventImpl()
626 ThreadReference fix6485605 = null; in build()
788 private ThreadReference eventThread() { in eventThread()
803 ThreadReference thread = eventThread(); in resume()
DMonitorInfoImpl.java39 ThreadReference thread;
85 public ThreadReference thread() { in thread()
DObjectReferenceImpl.java380 public Value invokeMethod(ThreadReference threadIntf, Method methodIntf, in invokeMethod()
530 public List<ThreadReference> waitingThreads() throws IncompatibleThreadStateException { in waitingThreads()
531 return Arrays.asList((ThreadReference[])jdwpMonitorInfo().waiters); in waitingThreads()
534 public ThreadReference owningThread() throws IncompatibleThreadStateException { in owningThread()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
DAllTests.java201 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.CurrentContendedMonitorTest.… in suite()
202 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturn002Test.clas… in suite()
203 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturn003Test.clas… in suite()
204 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturn004Test.clas… in suite()
205 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturn005Test.clas… in suite()
206 …suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturn006Test.clas… in suite()
207 … suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.ForceEarlyReturnTest.class); in suite()
208 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.FrameCountTest.class); in suite()
209 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.FramesTest.class); in suite()
210 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ThreadReference.InterruptTest.class); in suite()
[all …]
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DObjectReference.java272 Value invokeMethod(ThreadReference thread, Method method, in invokeMethod()
357 List<ThreadReference> waitingThreads() in waitingThreads()
378 ThreadReference owningThread() throws IncompatibleThreadStateException; in owningThread()
DClassType.java240 Value invokeMethod(ThreadReference thread, Method method, in invokeMethod()
346 ObjectReference newInstance(ThreadReference thread, Method method, in newInstance()
DMonitorInfo.java73 ThreadReference thread(); in thread()
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyObjectReference.java68 …public Value invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, … in invokeMethod()
86 … @Override public List<ThreadReference> waitingThreads() throws IncompatibleThreadStateException { in waitingThreads()
90 @Override public ThreadReference owningThread() throws IncompatibleThreadStateException { in owningThread()
DLazyThreadGroupReference.java36 import com.sun.jdi.ThreadReference;
68 @Override public List<ThreadReference> threads() { in threads()
DLazyThreadReference.java40 … class LazyThreadReference extends LazyObjectReference<ThreadReference> implements ThreadReference
/external/oj-libjdwp/src/share/classes/com/sun/jdi/event/
DThreadStartEvent.java63 public ThreadReference thread(); in thread()
DThreadDeathEvent.java56 public ThreadReference thread(); in thread()
DVMStartEvent.java54 public ThreadReference thread(); in thread()
DClassPrepareEvent.java65 public ThreadReference thread(); in thread()
DMonitorContendedEnterEvent.java53 public ThreadReference thread(); in thread()
DMonitorContendedEnteredEvent.java52 public ThreadReference thread(); in thread()
DMonitorWaitedEvent.java51 public ThreadReference thread(); in thread()
DMonitorWaitEvent.java51 public ThreadReference thread(); in thread()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/request/
DThreadStartRequest.java58 void addThreadFilter(ThreadReference thread); in addThreadFilter()
DThreadDeathRequest.java58 void addThreadFilter(ThreadReference thread); in addThreadFilter()

1234