HomeSort by relevance Sort by last modified time
    Searched full:threadname (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /external/webrtc/src/system_wrappers/source/
thread_win.cc 23 ThreadPriority prio, const char* threadName)
39 if (threadName != NULL)
43 strncpy(_name, threadName, kThreadMaxNameLength);
thread_win.h 26 const char* threadName);
thread_posix.cc 78 ThreadPriority prio, const char* threadName)
80 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName);
95 ThreadPriority prio, const char* threadName)
111 if (threadName != NULL)
114 strncpy(_name, threadName, kThreadMaxNameLength);
  /external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
kfunc_parser.js 57 thread.name = eventBase.threadName;
79 thread.name = eventBase.threadName;
workqueue_parser.js 51 var kthread = this.importer.getOrCreateKernelThread(eventBase.threadName,
63 var kthread = this.importer.getOrCreateKernelThread(eventBase.threadName,
clock_parser.js 36 eventBase, threadName) {
android_parser.js 95 thread.name = eventBase.threadName;
161 thread.name = eventBase.threadName;
176 thread.name = eventBase.threadName;
bus_parser.js 36 eventBase, threadName) {
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 run(threadName, android::PRIORITY_AUDIO);
  /hardware/qcom/display/msm8974/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
84 run(threadName, android::PRIORITY_AUDIO);
  /hardware/qcom/gps/core/
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /hardware/qcom/gps/msm8960/core/
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
  /external/chromium_org/build/android/pylib/utils/
run_tests_helper.py 16 def __init__(self, fmt='%(threadName)-4s %(message)s'):
  /system/core/libutils/
ProcessCallStack.cpp 192 threadInfo.threadName = getThreadName(tid);
228 const String8& threadName = threadInfo.threadName;
231 printer.printFormatLine("\"%s\" sysTid=%d", threadName.string(), tid);
Threads.cpp 80 char * threadName;
88 char * name = t->threadName;
128 const char* threadName __android_unused,
138 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
148 t->threadName = threadName ? strdup(threadName) : NULL;
260 const char* /*threadName*/,
295 const char* threadName,
300 return gCreateThreadFn(entryFunction, userData, threadName,
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
SuspendCountTest.java 113 String threadName = null;
115 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
121 allThreadsNames[i] = threadName;
124 if ( threadName.equals(testedThreadsNames[k]) ) {
135 + "; threadName = " + threadName);
149 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
186 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
214 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
255 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
    [all...]
ResumeTest.java 101 String threadName = null;
103 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
111 if ( threadName.equals(testedThreadsNames[k]) ) {
145 + "; threadName = " + testedThreadsNames[i]);
184 + "; threadName = " + testedThreadsNames[i]);
287 + "; threadName = " + testedThreadsNames[i]);
ForceEarlyReturnDebuggee.java 36 public static String threadName;
70 threadName = synchronizer.receiveMessage();
71 DebuggeeThread thrd = new DebuggeeThread(threadName, logWriter,
ThreadGroup002Test.java 111 String threadName = null;
113 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
121 if ( threadName.equals(testedThreadsNames[k]) ) {
169 + "; threadName = " + testedThreadsNames[threadCount]);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 100 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
102 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
109 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
112 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName);
  /external/webrtc/src/system_wrappers/interface/
thread_wrapper.h 54 // threadName NULL terminated thread name, will be visable in the Windows
59 const char* threadName = 0);
  /external/chromium_org/base/threading/
thread_unittest.cc 195 TEST_F(ThreadTest, ThreadName) {
196 Thread a("ThreadName");
198 EXPECT_EQ("ThreadName", a.thread_name());
  /system/core/debuggerd/
tombstone.cpp 200 char* threadname = NULL; local
205 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
207 if (threadname) {
208 size_t len = strlen(threadname);
209 if (len && threadname[len - 1] == '\n') {
210 threadname[len - 1] = '\0';
216 if (!strncmp(threadname, logd, sizeof(logd) - 1)
217 && (!threadname[sizeof(logd) - 1] || (threadname[sizeof(logd) - 1] == '.'))) {
231 threadname ? threadname : "UNKNOWN", procname ? procname : "UNKNOWN")
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/importer/
linux_perf_importer.js 133 threadName: groups[1],
156 threadName: groups[1],
176 threadName: groups[1],
369 * threadName. Pseudo threads are for events that we want to break
374 getOrCreatePseudoThread: function(threadName) {
375 var thread = this.kernelThreadStates_[threadName];
377 thread = this.getOrCreateKernelThread(threadName, pseudoKernelPID,
698 threadName) {
720 return handler(writeEventName, cpuNumber, pid, ts, eventBase, threadName);

Completed in 3947 milliseconds

12 3 4 5