/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | AllThreadsTest.java | 70 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 …]
|
D | ResumeTest.java | 222 final String threadName; field in ResumeTest.ThreadInfo 225 public ThreadInfo(String threadName) { in ThreadInfo() argument 226 this.threadName = threadName; in ThreadInfo() 304 String threadName = null; in createThreadInfos() local 306 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in createThreadInfos() 313 if (threadInfo.threadName.equals(threadName) ) { in createThreadInfos() 327 + threadInfo.threadName); in createThreadInfos() 357 + " (" + threadInfo.threadName + ")"); in checkThreadStatus() 368 " \"" + threadInfo.threadName + "\""); in checkThreadStatus() 386 " \"" + threadInfo.threadName + "\""); in checkThreadStatus()
|
D | Resume002Debuggee.java | 32 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()
|
D | SuspendTest.java | 68 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()
|
D | Resume002Test.java | 92 String threadName = debuggeeWrapper.vmMirror.getThreadName(eventThreadID); in waitBreakpointHits() local 93 logWriter.println("Thread \"" + threadName + "\" hit breakpoint"); in waitBreakpointHits()
|
/external/perfetto/ui/src/frontend/ |
D | colorizer_unittest.ts | 21 threadName: 'threadA', 29 threadName: 'threadB', 37 threadName: 'threadA', 45 threadName: 'unkThreadA', 51 threadName: 'unkThreadB',
|
D | slice_panel.ts | 44 m('td', `${threadInfo.threadName}`)), 94 const threadText = `T: ${threadInfo.threadName} [${threadInfo.tid}]`;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | NameTest.java | 59 String threadName; in testName001() local 71 threadName = thrdReply.getNextValueAsString(); in testName001() 73 + threadName); in testName001() 74 if (threadName.length() == 0) { in testName001()
|
D | SuspendCountTest.java | 112 String threadName = null; in testSuspendCount001() local 114 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspendCount001() 120 allThreadsNames[i] = threadName; in testSuspendCount001() 123 if ( threadName.equals(testedThreadsNames[k]) ) { in testSuspendCount001() 134 + "; threadName = " + threadName); in testSuspendCount001() 148 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 185 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 213 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 254 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
|
D | SuspendTest.java | 100 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()
|
D | ThreadGroupTest.java | 68 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()
|
D | ForceEarlyReturnDebuggee.java | 33 public static String threadName; field in ForceEarlyReturnDebuggee 68 threadName = synchronizer.receiveMessage(); in run() 69 DebuggeeThread thrd = new DebuggeeThread(threadName); in run()
|
D | ThreadGroup002Test.java | 110 String threadName = null; in testThreadGroup002() local 112 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadGroup002() 120 if ( threadName.equals(testedThreadsNames[k]) ) { in testThreadGroup002()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | ThreadOnlyModifierDebuggee.java | 110 String threadName = t.getName(); in runThread() local 111 logWriter.println("Thread " + threadName + " starts"); in runThread() 114 logWriter.println("Wait for end of thread " + threadName); in runThread() 119 logWriter.println("Thread " + threadName + " ends"); in runThread()
|
/external/oj-libjdwp/src/share/back/ |
D | transport.c | 418 char threadName[MAXPATHLEN + 100]; in transport_startTransport() local 490 (void)strcpy(threadName, "JDWP Transport Listener: "); in transport_startTransport() 491 (void)strcat(threadName, name); in transport_startTransport() 494 error = spawnNewThread(func, (void*)info, threadName); in transport_startTransport() 539 (void)strcpy(threadName, "JDWP Transport Listener: "); in transport_startTransport() 540 (void)strcat(threadName, name); in transport_startTransport() 543 err = spawnNewThread(func, (void*)trans, threadName); in transport_startTransport()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/ |
D | ChildrenTest.java | 101 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/perfetto/ui/src/controller/ |
D | trace_controller.ts | 366 threadName: STR_NULL, 374 const threadName = row.threadName; constant 413 name: upid === null ? `${threadName} ${tid}` : 459 name: `${threadName} [${tid}]`, 469 name: `${threadName} [${tid}]`, 505 const threadName = threadRows.columns[3].stringValues![i]; constant 507 threads.push({utid, tid, threadName, pid, procName});
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ThreadEndTest.java | 83 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()
|
D | ThreadStartTest.java | 89 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/ |
D | LoadThread.java | 31 public LoadThread(String threadName) { in LoadThread() argument 32 super(threadName); in LoadThread()
|
/external/setupcompat/main/java/com/google/android/setupcompat/internal/ |
D | ExecutorProvider.java | 81 public static ExecutorService createSizeBoundedExecutor(String threadName, int maxSize) { in createSizeBoundedExecutor() argument 88 runnable -> new Thread(runnable, threadName)); in createSizeBoundedExecutor()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | JDWPStackFrameAccessTest.java | 191 String threadName = synchronizer.receiveMessage(); in suspendDebuggee() local 192 long threadId = getThreadIdFromName(threadName); in suspendDebuggee() 204 private long getThreadIdFromName(String threadName) { in getThreadIdFromName() argument 208 if (threadName.equals(currentThreadName)) { in getThreadIdFromName() 212 throw new TestErrorException("Could not find thread id of thread \"" + threadName + "\""); in getThreadIdFromName()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | ThreadingModelTest.cs | 95 var threadName = Thread.CurrentThread.Name ?? ""; in IsRunningOnGrpcThreadPool() 96 return threadName.Contains("grpc"); in IsRunningOnGrpcThreadPool()
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | Callables.java | 106 private static boolean trySetName(final String threadName, Thread currentThread) { 111 currentThread.setName(threadName);
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | frontend.ts | 145 subTitle = `${threadInfo.threadName} [${threadInfo.tid}]`; 147 title = `${threadInfo.threadName} [${threadInfo.tid}]`; 252 line2 = `T: ${hoveredThread.threadName} [${hoveredThread.tid}]`; 254 line1 = `T: ${hoveredThread.threadName} [${hoveredThread.tid}]`;
|