Home
last modified time | relevance | path

Searched refs:threadName (Results 1 – 25 of 28) sorted by relevance

12

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DAllThreadsTest.java70 String threadName; in testAllThreads003() local
80 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads003()
94 + "\"" + threadName + "\" " in testAllThreads003()
98 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { in testAllThreads003()
128 String threadName; in testAllThreads002() local
140 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads002()
154 + "\"" + threadName + "\" " in testAllThreads002()
200 String threadName; in testAllThreads001() local
209 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads001()
211 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { in testAllThreads001()
[all …]
DResumeTest.java225 final String threadName; field in ResumeTest.ThreadInfo
228 public ThreadInfo(String threadName) { in ThreadInfo() argument
229 this.threadName = threadName; in ThreadInfo()
307 String threadName = null; in createThreadInfos() local
309 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in createThreadInfos()
316 if (threadInfo.threadName.equals(threadName) ) { in createThreadInfos()
330 + threadInfo.threadName); in createThreadInfos()
360 + " (" + threadInfo.threadName + ")"); in checkThreadStatus()
371 " \"" + threadInfo.threadName + "\""); in checkThreadStatus()
389 " \"" + threadInfo.threadName + "\""); in checkThreadStatus()
DResume002Debuggee.java32 String threadName = Thread.currentThread().getName(); in breakpointMethod() local
33 System.out.println(threadName + " enters breakpointMethod"); in breakpointMethod()
43 String threadName = Thread.currentThread().getName(); in run() local
44 logWriter.println("Thread \"" + threadName + "\" starts"); in run()
46 logWriter.println("Thread \"" + threadName + "\" ends"); in run()
DSuspendTest.java68 String threadName; in testSuspend001() local
78 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspend001()
92 + "\"" + threadName + "\" " in testSuspend001()
98 + threadName + "\"" + " is not in suspended state"); in testSuspend001()
DResume002Test.java92 String threadName = debuggeeWrapper.vmMirror.getThreadName(eventThreadID); in waitBreakpointHits() local
93 logWriter.println("Thread \"" + threadName + "\" hit breakpoint"); in waitBreakpointHits()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DNameTest.java59 String threadName; in testName001() local
71 threadName = thrdReply.getNextValueAsString(); in testName001()
73 + threadName); in testName001()
74 if (threadName.length() == 0) { in testName001()
DSuspendTest.java100 String threadName = null; in testSuspend001() local
102 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspend001()
110 if ( threadName.equals(testedThreadsNames[k]) ) { in testSuspend001()
121 + "; threadName = " + threadName); in testSuspend001()
155 … logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName); in testSuspend001()
167 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName); in testSuspend001()
DSuspendCountTest.java114 String threadName = null; in testSuspendCount001() local
116 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspendCount001()
122 allThreadsNames[i] = threadName; in testSuspendCount001()
125 if ( threadName.equals(testedThreadsNames[k]) ) { in testSuspendCount001()
136 + "; threadName = " + threadName); in testSuspendCount001()
150 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
187 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
215 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
256 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
DThreadGroupTest.java68 String groupName, threadName; in testThreadGroup001() local
86 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadGroup001()
89 + "; threadName=" + threadName in testThreadGroup001()
93 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) { in testThreadGroup001()
DForceEarlyReturnDebuggee.java33 public static String threadName; field in ForceEarlyReturnDebuggee
68 threadName = synchronizer.receiveMessage(); in run()
69 DebuggeeThread thrd = new DebuggeeThread(threadName); in run()
DThreadGroup002Test.java112 String threadName = null; in testThreadGroup002() local
114 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadGroup002()
122 if ( threadName.equals(testedThreadsNames[k]) ) { in testThreadGroup002()
DResumeTest.java102 String threadName = null; in testResume001() local
104 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testResume001()
112 if ( threadName.equals(testedThreadsNames[k]) ) { in testResume001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DThreadOnlyModifierDebuggee.java109 String threadName = t.getName(); in runThread() local
110 logWriter.println("Thread " + threadName + " starts"); in runThread()
113 logWriter.println("Wait for end of thread " + threadName); in runThread()
118 logWriter.println("Thread " + threadName + " ends"); in runThread()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
DChildrenTest.java101 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID); in testChildren001() local
103 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName); in testChildren001()
110 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) { in testChildren001()
113 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName); in testChildren001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DThreadEndTest.java83 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadEndEvent001() local
84 logWriter.println("=> threadName = " + threadName); in testThreadEndEvent001()
85 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName); in testThreadEndEvent001()
DThreadStartTest.java89 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadStartEvent001() local
90 logWriter.println("=> threadName = " + threadName); in testThreadStartEvent001()
93 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName); in testThreadStartEvent001()
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DLoadThread.java31 public LoadThread(String threadName) { in LoadThread() argument
32 super(threadName); in LoadThread()
/external/guava/guava/src/com/google/common/util/concurrent/
DCallables.java106 private static boolean trySetName(final String threadName, Thread currentThread) {
111 currentThread.setName(threadName);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DJDWPStackFrameAccessTest.java190 String threadName = synchronizer.receiveMessage(); in suspendDebuggee() local
191 long threadId = getThreadIdFromName(threadName); in suspendDebuggee()
203 private long getThreadIdFromName(String threadName) { in getThreadIdFromName() argument
207 if (threadName.equals(currentThreadName)) { in getThreadIdFromName()
211 throw new TestErrorException("Could not find thread id of thread \"" + threadName + "\""); in getThreadIdFromName()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DPeerConnectionFactory.java201 private static void printStackTrace(Thread thread, String threadName) { in printStackTrace() argument
205 Logging.d(TAG, threadName + " stacks trace:"); in printStackTrace()
/external/vogar/src/vogar/tasks/
DTaskQueue.java144 String threadName = Thread.currentThread().getName(); in runOneTask() local
150 Thread.currentThread().setName(threadName); in runOneTask()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DTestThread.java66 public TestThread(L lockLikeObject, String threadName) { in TestThread() argument
67 super(threadName); in TestThread()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DVideoRendererGui.java585 private static void printStackTrace(Thread thread, String threadName) { in printStackTrace() argument
589 Logging.d(TAG, threadName + " stacks trace:"); in printStackTrace()
/external/python/cpython2/Lib/logging/
D__init__.py285 self.threadName = threading.current_thread().name
288 self.threadName = None
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java667 public long getThreadID(String threadName) { in getThreadID() argument
682 if (threadName.equals(name)) { in getThreadID()

12