/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
D | memreclaim_parser.js | 51 openAsyncSlice: function(ts, category, threadName, pid, key, name) { argument 53 category + ':' + threadName, pid); 64 closeAsyncSlice: function(ts, category, threadName, pid, key, args) { argument 66 category + ':' + threadName, pid); 94 var kthread = this.importer.getOrCreateKernelThread("kswapd: " + eventBase.threadName, 108 var kthread = this.importer.getOrCreateKernelThread("kswapd: " + eventBase.threadName, 111 var slice = new tracing.trace_model.Slice('', eventBase.threadName, 112 tracing.getStringColorId(eventBase.threadName), 134 var kthread = this.importer.getOrCreateKernelThread("direct reclaim: " + eventBase.threadName, 149 var kthread = this.importer.getOrCreateKernelThread("direct reclaim: " + eventBase.threadName, [all …]
|
D | disk_parser.js | 48 openAsyncSlice: function(ts, category, threadName, pid, key, name) { argument 50 category + ':' + threadName, pid); 61 closeAsyncSlice: function(ts, category, threadName, pid, key, args) { argument 63 category + ':' + threadName, pid); 93 this.openAsyncSlice(ts, "f2fs", eventBase.threadName, eventBase.pid, 110 this.closeAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, 129 this.openAsyncSlice(ts, "ext4", eventBase.threadName, eventBase.pid, 146 this.closeAsyncSlice(ts, 'ext4', eventBase.threadName, eventBase.pid, 166 this.openAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, 182 this.closeAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, [all …]
|
D | kfunc_parser.js | 57 thread.name = eventBase.threadName; 79 thread.name = eventBase.threadName;
|
D | workqueue_parser.js | 51 var kthread = this.importer.getOrCreateKernelThread(eventBase.threadName, 63 var kthread = this.importer.getOrCreateKernelThread(eventBase.threadName,
|
D | android_parser.js | 95 thread.name = eventBase.threadName; 161 thread.name = eventBase.threadName; 176 thread.name = eventBase.threadName;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | AllThreadsTest.java | 69 String threadName; in testAllThreads003() local 79 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads003() 93 + "\"" + threadName + "\" " in testAllThreads003() 97 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { in testAllThreads003() 127 String threadName; in testAllThreads002() local 139 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads002() 153 + "\"" + threadName + "\" " in testAllThreads002() 199 String threadName; in testAllThreads001() local 208 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testAllThreads001() 210 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { in testAllThreads001() [all …]
|
D | ResumeTest.java | 224 final String threadName; field in ResumeTest.ThreadInfo 227 public ThreadInfo(String threadName) { in ThreadInfo() argument 228 this.threadName = threadName; in ThreadInfo() 306 String threadName = null; in createThreadInfos() local 308 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in createThreadInfos() 315 if (threadInfo.threadName.equals(threadName) ) { in createThreadInfos() 329 + threadInfo.threadName); in createThreadInfos() 359 + " (" + threadInfo.threadName + ")"); in checkThreadStatus() 370 " \"" + threadInfo.threadName + "\""); in checkThreadStatus() 388 " \"" + threadInfo.threadName + "\""); in checkThreadStatus()
|
D | SuspendTest.java | 67 String threadName; in testSuspend001() local 77 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspend001() 91 + "\"" + threadName + "\" " in testSuspend001() 97 + threadName + "\"" + " is not in suspended state"); in testSuspend001()
|
/external/webrtc/src/system_wrappers/source/ |
D | thread.cc | 22 const char* threadName) in CreateThread() argument 25 return new ThreadWindows(func, obj, prio, threadName); in CreateThread() 27 return ThreadPosix::Create(func, obj, prio, threadName); in CreateThread()
|
D | thread_posix.cc | 78 ThreadPriority prio, const char* threadName) in Create() argument 80 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName); in Create() 95 ThreadPriority prio, const char* threadName) in ThreadPosix() argument 111 if (threadName != NULL) in ThreadPosix() 114 strncpy(_name, threadName, kThreadMaxNameLength); in ThreadPosix()
|
D | thread_win.cc | 23 ThreadPriority prio, const char* threadName) in ThreadWindows() argument 39 if (threadName != NULL) in ThreadWindows() 43 strncpy(_name, threadName, kThreadMaxNameLength); in ThreadWindows()
|
D | thread_posix.h | 26 ThreadPriority prio, const char* threadName); 29 const char* threadName);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | NameTest.java | 58 String threadName; in testName001() local 70 threadName = thrdReply.getNextValueAsString(); in testName001() 72 + threadName); in testName001() 73 if (threadName.length() == 0) { in testName001()
|
D | SuspendTest.java | 99 String threadName = null; in testSuspend001() local 101 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspend001() 109 if ( threadName.equals(testedThreadsNames[k]) ) { in testSuspend001() 120 + "; threadName = " + threadName); in testSuspend001() 154 … logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName); in testSuspend001() 166 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName); in testSuspend001()
|
D | ThreadGroupTest.java | 67 String groupName, threadName; in testThreadGroup001() local 85 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadGroup001() 88 + "; threadName=" + threadName in testThreadGroup001() 92 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) { in testThreadGroup001()
|
D | SuspendCountTest.java | 113 String threadName = null; in testSuspendCount001() local 115 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testSuspendCount001() 121 allThreadsNames[i] = threadName; in testSuspendCount001() 124 if ( threadName.equals(testedThreadsNames[k]) ) { in testSuspendCount001() 135 + "; threadName = " + threadName); in testSuspendCount001() 149 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 186 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 214 … logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001() 255 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName); in testSuspendCount001()
|
D | ForceEarlyReturnDebuggee.java | 36 public static String threadName; field in ForceEarlyReturnDebuggee 70 threadName = synchronizer.receiveMessage(); in run() 71 DebuggeeThread thrd = new DebuggeeThread(threadName, logWriter, in run()
|
D | ThreadGroup002Test.java | 111 String threadName = null; in testThreadGroup002() local 113 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadGroup002() 121 if ( threadName.equals(testedThreadsNames[k]) ) { in testThreadGroup002()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | ThreadOnlyModifierDebuggee.java | 109 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/ |
D | ChildrenTest.java | 100 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID); in testChildren001() local 102 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName); in testChildren001() 109 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) { in testChildren001() 112 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName); in testChildren001()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ThreadEndTest.java | 90 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadEndEvent001() local 91 logWriter.println("=> threadName = " + threadName); in testThreadEndEvent001() 92 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName); in testThreadEndEvent001()
|
D | ThreadStartTest.java | 96 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); in testThreadStartEvent001() local 97 logWriter.println("=> threadName = " + threadName); in testThreadStartEvent001() 100 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName); in testThreadStartEvent001()
|
/external/chromium-trace/trace-viewer/src/tracing/importer/ |
D | linux_perf_importer_test.js | 17 assertEquals('<idle>', x.threadName); 29 assertEquals('Binder-Thread #', x.threadName); 38 assertEquals('systrace.sh', x.threadName); 51 assertEquals('systrace.sh', x.threadName);
|
D | linux_perf_importer.js | 133 threadName: groups[1], 156 threadName: groups[1], 176 threadName: groups[1], 374 getOrCreatePseudoThread: function(threadName) { argument 375 var thread = this.kernelThreadStates_[threadName]; 377 thread = this.getOrCreateKernelThread(threadName, pseudoKernelPID, 698 threadName) { argument 720 return handler(writeEventName, cpuNumber, pid, ts, eventBase, threadName);
|
/external/chromium_org/third_party/webrtc/modules/audio_device/dummy/ |
D | file_audio_device.cc | 210 const char* threadName = "webrtc_audio_module_play_thread"; in StartPlayout() local 214 threadName); in StartPlayout() 298 const char* threadName = "webrtc_audio_module_capture_thread"; in StartRecording() local 302 threadName); in StartRecording()
|