HomeSort by relevance Sort by last modified time
    Searched refs:threadStatus (Results 1 - 18 of 18) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
VM.java 357 * Returns Thread.State for the given threadStatus
359 public static Thread.State toThreadState(int threadStatus) {
360 if ((threadStatus & JVMTI_THREAD_STATE_RUNNABLE) != 0) {
362 } else if ((threadStatus & JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER) != 0) {
364 } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_INDEFINITELY) != 0) {
366 } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT) != 0) {
368 } else if ((threadStatus & JVMTI_THREAD_STATE_TERMINATED) != 0) {
370 } else if ((threadStatus & JVMTI_THREAD_STATE_ALIVE) == 0) {
377 /* The threadStatus field is set by the VM at state transition
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
StatusTest.java 75 int threadStatus = reply.getNextValueAsInt();
80 + JDWPConstants.ThreadStatus.getName(threadStatus) + " "
83 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) {
85 + JDWPConstants.ThreadStatus.getName(threadStatus));
88 + JDWPConstants.ThreadStatus.getName(threadStatus));
93 + JDWPConstants.ThreadStatus.getName(suspendStatus))
    [all...]
Status002Test.java 90 int threadStatus = checkedReply.getNextValueAsInt();
93 logWriter.println("\n=> Returned thread status = 0x" + Integer.toHexString(threadStatus)
94 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
95 if (threadStatus != JDWPConstants.ThreadStatus.SLEEPING) {
98 + Integer.toHexString(threadStatus)
99 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")"
101 + Integer.toHexString(JDWPConstants.ThreadStatus.SLEEPING
    [all...]
Status003Test.java 89 int threadStatus = checkedReply.getNextValueAsInt();
92 logWriter.println("\n=> Returned thread status = 0x" + Integer.toHexString(threadStatus)
93 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
94 if (threadStatus != JDWPConstants.ThreadStatus.WAIT) {
98 + Integer.toHexString(JDWPConstants.ThreadStatus.WAIT)
99 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.WAIT) + ")");
Status004Test.java 88 int threadStatus = checkedReply.getNextValueAsInt();
91 logWriter.println("\n=> Returned thread status = 0x" + Integer.toHexString(threadStatus)
92 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
93 if (threadStatus != JDWPConstants.ThreadStatus.WAIT) {
97 + Integer.toHexString(JDWPConstants.ThreadStatus.WAIT)
98 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.WAIT) + ")");
Status005Test.java 89 int threadStatus = checkedReply.getNextValueAsInt();
92 logWriter.println("\n=> Returned thread status = 0x" + Integer.toHexString(threadStatus)
93 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
94 if (threadStatus != JDWPConstants.ThreadStatus.MONITOR) {
98 + Integer.toHexString(JDWPConstants.ThreadStatus.MONITOR)
99 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.MONITOR) + ")");
Status006Test.java 100 int threadStatus = checkedReply.getNextValueAsInt();
103 logWriter.println("\n=> Returned thread status = 0x" + Integer.toHexString(threadStatus)
104 + "(" + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
105 if (threadStatus != JDWPConstants.ThreadStatus.ZOMBIE) {
109 + Integer.toHexString(JDWPConstants.ThreadStatus.ZOMBIE)
110 + "(" + JDWPConstants.ThreadStatus.getName(JDWPConstants.ThreadStatus.ZOMBIE) + ")");
ResumeTest.java 197 int threadStatus = reply.getNextValueAsInt();
200 logWriter.println("==> threadStatus = " + threadStatus + "("
201 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
237 threadStatus = reply.getNextValueAsInt();
240 logWriter.println("==> threadStatus = " + threadStatus + "("
241 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")")
    [all...]
SuspendTest.java 145 int threadStatus = reply.getNextValueAsInt();
148 logWriter.println("==> threadStatus = " + threadStatus + "("
149 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
ThreadGroup002Test.java 181 int threadStatus = reply.getNextValueAsInt();
185 logWriter.println("==> thread status of checked thread = " + threadStatus + "("
186 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
202 if (threadStatus == JDWPConstants.ThreadStatus.ZOMBIE) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllThreadsTest.java 68 int threadStatus, suspendStatus;
89 threadStatus = replyName.getNextValueAsInt();
94 + JDWPConstants.ThreadStatus.getName(threadStatus) + " "
126 int threadStatus, suspendStatus;
149 threadStatus = replyName.getNextValueAsInt();
154 + JDWPConstants.ThreadStatus.getName(threadStatus) + " "
156 if (threadStatus == JDWPConstants.ThreadStatus.RUNNIN
    [all...]
SuspendTest.java 66 int threadStatus, suspendStatus;
87 threadStatus = replyName.getNextValueAsInt();
92 + JDWPConstants.ThreadStatus.getName(threadStatus) + " "
ResumeTest.java 375 int threadStatus = reply.getNextValueAsInt();
378 logWriter.println("==> threadStatus = " + threadStatus + " ("
379 + JDWPConstants.ThreadStatus.getName(threadStatus) + ")");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 616 int threadStatus = replyPacket.getNextValueAsInt();
620 assertEquals("Invalid thread status", threadStatus, expectedThreadStatus,
621 JDWPConstants.ThreadStatus.getName(expectedThreadStatus),
622 JDWPConstants.ThreadStatus.getName(threadStatus));
    [all...]
  /external/icu/icu4c/source/test/intltest/
tsmthred.cpp 839 int32_t threadStatus = tests[j].start();
840 if (threadStatus != 0) {
842 __FILE__, __LINE__, threadStatus, j);
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Thread.java 222 private volatile int threadStatus = 0;
720 if (threadStatus != 0)
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 975 JDWP::JdwpThreadStatus threadStatus;
977 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 527 milliseconds