HomeSort by relevance Sort by last modified time
    Searched refs:ThreadStatus (Results 1 - 25 of 36) sorted by null

1 2

  /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...]
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) {
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 41 private static class ThreadStatus {
60 private final WeakHashMap<Thread, ThreadStatus> mThreadStatus =
61 new WeakHashMap<Thread, ThreadStatus>();
71 private synchronized ThreadStatus getOrCreateThreadStatus(Thread t) {
72 ThreadStatus status = mThreadStatus.get(t);
74 status = new ThreadStatus();
90 ThreadStatus status = mThreadStatus.get(t);
99 ThreadStatus status = mThreadStatus.get(t);
114 ThreadStatus status = getOrCreateThreadStatus(t);
141 ThreadStatus status = getOrCreateThreadStatus(t)
    [all...]
  /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) + " "
  /external/valgrind/coregrind/
pub_core_scheduler.h 79 ThreadStatus state, const HChar* who );
pub_core_threadstate.h 61 enum ThreadStatus {
69 ThreadStatus;
334 ThreadStatus status;
429 // Convert a ThreadStatus to a string.
430 const HChar* VG_(name_of_ThreadStatus) ( ThreadStatus status );
m_threadstate.c 73 const HChar* VG_(name_of_ThreadStatus) ( ThreadStatus status )
  /external/deqp/framework/common/
tcuThreadUtil.hpp 156 enum ThreadStatus
179 ThreadStatus getStatus (void) const { return m_status; }
199 ThreadStatus m_status;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h 24 enum ThreadStatus {
46 ThreadStatus status;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
Breakpoint002Test.java 169 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
MethodEntryTest.java 75 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
MethodExitTest.java 75 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
BreakpointTest.java 79 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
FieldAccessTest.java 74 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
FieldModificationTest.java 74 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
BreakpointOnCatchTest.java 91 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
CombinedExceptionEventsTest.java 156 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
ExceptionBaseTest.java 58 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,

Completed in 209 milliseconds

1 2