HomeSort by relevance Sort by last modified time
    Searched defs:suspendCount (Results 1 - 11 of 11) sorted by null

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPInvokeMethodSuspendedTwiceTestCase.java 74 int suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
75 assertEquals("Invalid suspend count:", 1, suspendCount);
82 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
83 assertEquals("Invalid suspend count:", 2, suspendCount);
120 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
121 assertEquals("Invalid suspend count:", 1, suspendCount);
152 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
153 assertEquals("Invalid suspend count:", 1, suspendCount);
JDWPInvokeMethodWithSuspensionTestCase.java 81 int suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
82 assertEquals("Invalid suspend count:", 1, suspendCount);
104 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadTwo);
105 assertEquals("Invalid suspend count:", 1, suspendCount);
109 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
110 assertEquals("Invalid suspend count:", 1, suspendCount);
141 suspendCount = debuggeeWrapper.vmMirror.getThreadSuspendCount(eventThreadOne);
142 assertEquals("Invalid suspend count:", 1, suspendCount);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyThreadReference.java 113 public int suspendCount() {
114 return getValue().suspendCount();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
SuspendCountTest.java 38 * JDWP Unit test for ThreadReference.SuspendCount command.
53 * This testcase exercises ThreadReference.SuspendCount command.
57 * check that ThreadReference.SuspendCount command returns
60 * and check that ThreadReference.SuspendCount command returns 1 value
63 * and check that ThreadReference.SuspendCount command returns 0 value
138 logWriter.println("==> Send ThreadReference.SuspendCount command...");
144 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
147 int suspendCount = reply.getNextValueAsInt();
148 logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
Resume002Test.java 126 checkReplyPacket(reply, "ThreadReference::SuspendCount command");
128 int suspendCount = reply.getNextValueAsInt();
131 assertEquals("Invalid suspend count for thread " + eventThreadID, 1, suspendCount);
  /external/oj-libjdwp/src/share/back/
ThreadReferenceImpl.c 491 suspendCount(PacketInputStream *in, PacketOutputStream *out)
679 (void *)suspendCount,
threadControl.c 60 * suspendCount is the number of outstanding suspends
76 jint suspendCount;
344 node->suspendCount = suspendAllCount;
399 if (node->suspendCount == 0) {
689 while (node && node->suspendCount > 0) {
877 * that is not started. Bookkeeping (suspendCount,etc.)
898 if (node->suspendCount > 0) {
907 node->suspendCount--;
932 node->suspendCount++;
936 if (node->suspendCount == 0)
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/lib/
sa-jdi.jar 
tools.jar 
  /prebuilts/jdk/jdk8/linux-x86/lib/
sa-jdi.jar 
tools.jar 

Completed in 640 milliseconds