/external/webrtc/src/system_wrappers/source/ |
thread.cc | 22 const char* threadName) 25 return new ThreadWindows(func, obj, prio, threadName); 27 return ThreadPosix::Create(func, obj, prio, threadName);
|
thread_posix.h | 26 ThreadPriority prio, const char* threadName); 29 const char* threadName);
|
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);
|
/system/core/debuggerd/ |
backtrace.c | 69 char* threadname = NULL; local 74 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp); 76 if (threadname) { 77 size_t len = strlen(threadname); 78 if (len && threadname[len - 1] == '\n') { 79 threadname[len - 1] = '\0'; 85 threadname ? threadname : "<unknown>", tid);
|
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
disk_parser.js | 36 openAsyncSlice: function(ts, category, threadName, pid, key, name) { 38 category + ':' + threadName, pid); 49 closeAsyncSlice: function(ts, category, threadName, pid, key, args) { 51 category + ':' + threadName, pid); 82 this.openAsyncSlice(ts, 'ext4', eventBase.threadName, eventBase.pid, 96 this.closeAsyncSlice(ts, 'ext4', eventBase.threadName, eventBase.pid, 149 this.openAsyncSlice(ts, 'block', eventBase.threadName, eventBase.pid, 165 this.closeAsyncSlice(ts, 'block', eventBase.threadName, eventBase.pid,
|
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) {
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofData.java | 55 public final String threadName; 59 public static ThreadEvent start(int objectId, int threadId, String threadName, 62 threadName, groupName, parentGroupName); 70 String threadName, String groupName, String parentGroupName) { 71 if (threadName == null) { 72 throw new NullPointerException("threadName == null"); 77 this.threadName = threadName; 86 this.threadName = null; 95 result = 31 * result + hashCode(threadName); [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Threading.h | 49 WTF_EXPORT ThreadIdentifier createThread(ThreadFunction, void*, const char* threadName); 52 WTF_EXPORT ThreadIdentifier createThreadInternal(ThreadFunction, void*, const char* threadName); 56 WTF_EXPORT void initializeCurrentThreadInternal(const char* threadName);
|
/system/core/include/utils/ |
AndroidThreads.h | 42 const char* threadName, 54 const char* threadName, 66 const char* threadName, 109 const char* threadName = "android:unnamed_thread", 114 return androidCreateThreadEtc(entryFunction, userData, threadName,
|
/libcore/libart/src/main/java/java/lang/ |
Thread.java | 226 * @param threadName 232 public Thread(Runnable runnable, String threadName) { 233 if (threadName == null) { 234 throw new NullPointerException("threadName == null"); 237 create(null, runnable, threadName, 0); 245 * @param threadName 252 public Thread(String threadName) { 253 if (threadName == null) { 254 throw new NullPointerException("threadName == null"); 257 create(null, null, threadName, 0) [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
Thread.java | 221 * @param threadName 227 public Thread(Runnable runnable, String threadName) { 228 if (threadName == null) { 229 throw new NullPointerException("threadName == null"); 232 create(null, runnable, threadName, 0); 240 * @param threadName 247 public Thread(String threadName) { 248 if (threadName == null) { 249 throw new NullPointerException("threadName == null"); 252 create(null, null, threadName, 0) [all...] |
/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/display/msm8x26/libqdutils/ |
idle_invalidator.cpp | 35 static const char *threadName = "Invalidator"; 80 run(threadName, android::PRIORITY_AUDIO);
|
/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 | 188 threadInfo.threadName = getThreadName(tid); 225 const String8& threadName = threadInfo.threadName; 228 printer.printFormatLine("\"%s\" sysTid=%d", threadName.string(), tid);
|
/dalvik/vm/os/ |
android.cpp | 65 std::string threadName(dvmGetThreadName(thread)); 67 pid, threadName.c_str(), newPriority, newNice, strerror(errno));
|
/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/base/threading/ |
thread_unittest.cc | 210 TEST_F(ThreadTest, ThreadName) { 211 Thread a("ThreadName"); 213 EXPECT_EQ("ThreadName", a.thread_name());
|
/external/chromium_org/base/threading/ |
thread_unittest.cc | 195 TEST_F(ThreadTest, ThreadName) { 196 Thread a("ThreadName"); 198 EXPECT_EQ("ThreadName", a.thread_name());
|