Home
last modified time | relevance | path

Searched refs:suspendStatus (Results 1 – 13 of 13) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DStatusTest.java77 int suspendStatus = reply.getNextValueAsInt(); in testStatus002() local
82 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus002()
92 if (suspendStatus != JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus002()
94 + JDWPConstants.ThreadStatus.getName(suspendStatus)); in testStatus002()
97 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus002()
134 int suspendStatus = reply.getNextValueAsInt(); in testStatus001() local
139 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus001()
149 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus001()
151 + JDWPConstants.ThreadStatus.getName(suspendStatus)); in testStatus001()
154 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testStatus001()
DResumeTest.java199 int suspendStatus = reply.getNextValueAsInt(); in testResume001() local
203 logWriter.println("==> suspendStatus = " + suspendStatus + "(" in testResume001()
204 + JDWPConstants.SuspendStatus.getName(suspendStatus) + ")"); in testResume001()
205 if (suspendStatus in testResume001()
239 suspendStatus = reply.getNextValueAsInt(); in testResume001()
243 logWriter.println("==> suspendStatus = " + suspendStatus + "(" in testResume001()
244 + JDWPConstants.SuspendStatus.getName(suspendStatus) + ")"); in testResume001()
245 if (suspendStatus in testResume001()
319 int suspendStatus = reply.getNextValueAsInt(); in testResume001() local
323 logWriter.println("==> suspendStatus = " + suspendStatus + "(" in testResume001()
[all …]
DStatus003Test.java49 String getThreadSuspendStatusName(int suspendStatus) { in getThreadSuspendStatusName() argument
51 String result = JDWPConstants.SuspendStatus.getName(suspendStatus); in getThreadSuspendStatusName()
91 int suspendStatus = checkedReply.getNextValueAsInt(); in testStatus004() local
106 ("\n=> Returned thread suspend status = 0x" + Integer.toHexString(suspendStatus) in testStatus004()
107 + "(" + getThreadSuspendStatusName(suspendStatus) + ")"); in testStatus004()
108 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus004()
DStatus006Test.java49 String getThreadSuspendStatusName(int suspendStatus) { in getThreadSuspendStatusName() argument
50 String result = JDWPConstants.SuspendStatus.getName(suspendStatus); in getThreadSuspendStatusName()
102 int suspendStatus = checkedReply.getNextValueAsInt(); in testStatus007() local
117 ("\n=> Returned thread suspend status = 0x" + Integer.toHexString(suspendStatus) in testStatus007()
118 + "(" + getThreadSuspendStatusName(suspendStatus) + ")"); in testStatus007()
119 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus007()
DStatus004Test.java49 String getThreadSuspendStatusName(int suspendStatus) { in getThreadSuspendStatusName() argument
50 String result = JDWPConstants.SuspendStatus.getName(suspendStatus); in getThreadSuspendStatusName()
90 int suspendStatus = checkedReply.getNextValueAsInt(); in testStatus005() local
105 ("\n=> Returned thread suspend status = 0x" + Integer.toHexString(suspendStatus) in testStatus005()
106 + "(" + getThreadSuspendStatusName(suspendStatus) + ")"); in testStatus005()
107 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus005()
DStatus005Test.java49 String getThreadSuspendStatusName(int suspendStatus) { in getThreadSuspendStatusName() argument
51 String result = JDWPConstants.SuspendStatus.getName(suspendStatus); in getThreadSuspendStatusName()
91 int suspendStatus = checkedReply.getNextValueAsInt(); in testStatus006() local
106 ("\n=> Returned thread suspend status = 0x" + Integer.toHexString(suspendStatus) in testStatus006()
107 + "(" + getThreadSuspendStatusName(suspendStatus) + ")"); in testStatus006()
108 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus006()
DStatus002Test.java49 String getThreadSuspendStatusName(int suspendStatus) { in getThreadSuspendStatusName() argument
51 String result = JDWPConstants.SuspendStatus.getName(suspendStatus); in getThreadSuspendStatusName()
92 int suspendStatus = checkedReply.getNextValueAsInt(); in testStatus003() local
109 ("\n=> Returned thread suspend status = 0x" + Integer.toHexString(suspendStatus) in testStatus003()
110 + "(" + getThreadSuspendStatusName(suspendStatus) + ")"); in testStatus003()
111 if (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED) { in testStatus003()
DSuspendTest.java147 int suspendStatus = reply.getNextValueAsInt(); in testSuspend001() local
151 logWriter.println("==> suspendStatus = " + suspendStatus + "(" in testSuspend001()
152 + JDWPConstants.SuspendStatus.getName(suspendStatus) + ")"); in testSuspend001()
153 if (suspendStatus in testSuspend001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DSuspendTest.java67 int threadStatus, suspendStatus; in testSuspend001() local
89 suspendStatus = replyName.getNextValueAsInt(); in testSuspend001()
94 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testSuspend001()
95 if (suspendStatus in testSuspend001()
DAllThreadsTest.java69 int threadStatus, suspendStatus; in testAllThreads003() local
91 suspendStatus = replyName.getNextValueAsInt(); in testAllThreads003()
96 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testAllThreads003()
127 int threadStatus, suspendStatus; in testAllThreads002() local
151 suspendStatus = replyName.getNextValueAsInt(); in testAllThreads002()
156 + JDWPConstants.SuspendStatus.getName(suspendStatus)); in testAllThreads002()
DResumeTest.java377 int suspendStatus = reply.getNextValueAsInt(); in checkThreadStatus() local
381 logWriter.println("==> suspendStatus = " + suspendStatus + " (" in checkThreadStatus()
382 + JDWPConstants.SuspendStatus.getName(suspendStatus) + ")"); in checkThreadStatus()
385 (suspendStatus == JDWPConstants.SuspendStatus.SUSPEND_STATUS_SUSPENDED); in checkThreadStatus()
DResume002Test.java110 int suspendStatus = reply.getNextValueAsInt(); in checkThreadSuspendStatus() local
115 suspendStatus); in checkThreadSuspendStatus()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPTestCase.java619 int suspendStatus = replyPacket.getNextValueAsInt(); in checkThreadState() local
625 assertEquals("Invalid suspend status", suspendStatus, expectedSuspendStatus, in checkThreadState()
627 JDWPConstants.SuspendStatus.getName(suspendStatus)); in checkThreadState()