HomeSort by relevance Sort by last modified time
    Searched defs:threadName (Results 1 - 25 of 332) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 run(threadName, android::PRIORITY_AUDIO);
  /system/core/libutils/include/utils/
ProcessCallStack.h 68 String8 threadName;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ThreadEndTest.java 83 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
84 logWriter.println("=> threadName = " + threadName);
85 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
ThreadStartTest.java 89 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
90 logWriter.println("=> threadName = " + threadName);
93 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
NameTest.java 59 String threadName;
71 threadName = thrdReply.getNextValueAsString();
72 logWriter.println("\tthreadID = " + threadID + " threadName = "
73 + threadName);
74 if (threadName.length() == 0) {
ThreadGroupTest.java 68 String groupName, threadName;
86 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
89 + "; threadName=" + threadName
93 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) {
SuspendTest.java 100 String threadName = null;
102 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
110 if ( threadName.equals(testedThreadsNames[k]) ) {
121 + "; threadName = " + threadName);
155 logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName);
167 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName);
ResumeTest.java 102 String threadName = null;
104 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
112 if ( threadName.equals(testedThreadsNames[k]) ) {
146 + "; threadName = " + testedThreadsNames[i]);
185 + "; threadName = " + testedThreadsNames[i]);
288 + "; threadName = " + testedThreadsNames[i]);
SuspendCountTest.java 114 String threadName = null;
116 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 allThreadsNames[i] = threadName;
125 if ( threadName.equals(testedThreadsNames[k]) ) {
136 + "; threadName = " + threadName);
150 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
187 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
215 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
256 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
    [all...]
ThreadGroup002Test.java 112 String threadName = null;
114 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 if ( threadName.equals(testedThreadsNames[k]) ) {
170 + "; threadName = " + testedThreadsNames[threadCount]);
ForceEarlyReturnDebuggee.java 33 public static String threadName;
68 threadName = synchronizer.receiveMessage();
69 DebuggeeThread thrd = new DebuggeeThread(threadName);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
Resume002Debuggee.java 32 String threadName = Thread.currentThread().getName();
33 System.out.println(threadName + " enters breakpointMethod");
43 String threadName = Thread.currentThread().getName();
44 logWriter.println("Thread \"" + threadName + "\" starts");
46 logWriter.println("Thread \"" + threadName + "\" ends");
SuspendTest.java 68 String threadName;
78 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
92 + "\"" + threadName + "\" "
98 + threadName + "\"" + " is not in suspended state");
AllThreadsTest.java 70 String threadName;
80 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
94 + "\"" + threadName + "\" "
98 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) {
128 String threadName;
140 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
154 + "\"" + threadName + "\" "
200 String threadName;
209 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
211 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD))
    [all...]
Resume002Test.java 92 String threadName = debuggeeWrapper.vmMirror.getThreadName(eventThreadID);
93 logWriter.println("Thread \"" + threadName + "\" hit breakpoint");
ResumeTest.java 225 final String threadName;
228 public ThreadInfo(String threadName) {
229 this.threadName = threadName;
307 String threadName = null;
309 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
316 if (threadInfo.threadName.equals(threadName) ) {
330 + threadInfo.threadName);
360 + " (" + threadInfo.threadName + ")")
    [all...]
  /hardware/qcom/display/msm8084/libqdutils/
idle_invalidator.cpp 41 static const char *threadName = "IdleInvalidator";
89 run(threadName, android::PRIORITY_LOWEST);
  /hardware/qcom/display/msm8226/libqdutils/
idle_invalidator.cpp 41 static const char *threadName = "IdleInvalidator";
89 run(threadName, android::PRIORITY_LOWEST);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 101 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
103 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
110 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
113 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName);
  /hardware/qcom/display/msm8909/libqdutils/
idle_invalidator.cpp 42 static const char *threadName = "IdleInvalidator";
81 run(threadName, android::PRIORITY_LOWEST);
  /hardware/qcom/display/msm8994/libqdutils/
idle_invalidator.cpp 42 static const char *threadName = "IdleInvalidator";
81 run(threadName, android::PRIORITY_LOWEST);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
ThreadOnlyModifierDebuggee.java 109 String threadName = t.getName();
110 logWriter.println("Thread " + threadName + " starts");
113 logWriter.println("Wait for end of thread " + threadName);
118 logWriter.println("Thread " + threadName + " ends");
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
  /system/chre/platform/slpi/
init.cc 175 char threadName[] = "CHRE";
179 qurt_thread_attr_set_name(&attributes, threadName);
  /system/core/libutils/
ProcessCallStack.cpp 185 threadInfo.threadName = getThreadName(tid);
214 const String8& threadName = threadInfo.threadName;
217 printer.printFormatLine("\"%s\" sysTid=%d", threadName.string(), tid);

Completed in 2259 milliseconds

1 2 3 4 5 6 7 8 91011>>