/external/valgrind/memcheck/tests/ |
threadname.vgtest | 1 prog: threadname 2 prereq: test -e ./threadname
|
threadname_xml.vgtest | 1 prog: threadname 2 prereq: test -e ./threadname
|
threadname.stderr.exp | 2 at 0x........: bad_things (threadname.c:21) 3 by 0x........: main (threadname.c:82) 6 by 0x........: bad_things (threadname.c:20) 7 by 0x........: main (threadname.c:82) 11 at 0x........: bad_things (threadname.c:21) 12 by 0x........: child_fn_0 (threadname.c:67) 16 by 0x........: bad_things (threadname.c:20) 17 by 0x........: child_fn_0 (threadname.c:67) 22 at 0x........: bad_things (threadname.c:21) 23 by 0x........: child_fn_1 (threadname.c:51 [all...] |
threadname.c | 27 const char* threadname = "012345678901234"; local 30 pthread_setname_np(pthread_self(), threadname); local 32 pthread_setname_np(threadname); 42 const char* threadname = "try1"; local 46 pthread_setname_np(pthread_self(), threadname); local 48 pthread_setname_np(threadname);
|
threadname_xml.stderr.exp | 22 <exe>./threadname</exe> 42 <file>threadname.c</file> 50 <file>threadname.c</file> 69 <file>threadname.c</file> 77 <file>threadname.c</file> 94 <file>threadname.c</file> 102 <file>threadname.c</file> 121 <file>threadname.c</file> 129 <file>threadname.c</file> 138 <threadname>try1</threadname [all...] |
/hardware/intel/img/hwcomposer/merrifield/common/base/ |
SimpleThread.h | 22 #define DECLARE_THREAD(THREADNAME, THREADOWNER) \ 23 class THREADNAME: public Thread { \ 25 THREADNAME(THREADOWNER *owner) { mOwner = owner; } \ 26 THREADNAME() { mOwner = NULL; } \ 32 friend class THREADNAME; \ 34 sp<THREADNAME> mThread;
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/ |
SimpleThread.h | 22 #define DECLARE_THREAD(THREADNAME, THREADOWNER) \ 23 class THREADNAME: public Thread { \ 25 THREADNAME(THREADOWNER *owner) { mOwner = owner; } \ 26 THREADNAME() { mOwner = NULL; } \ 32 friend class THREADNAME; \ 34 sp<THREADNAME> mThread;
|
/packages/apps/Camera2/src/com/android/camera/async/ |
HandlerFactory.java | 28 * @param threadName The name to assign to the created thread. 31 public Handler create(Lifetime lifetime, String threadName) { 32 final HandlerThread thread = new HandlerThread(threadName); 47 * @param threadName The name to assign to the created thread. 51 public Handler create(Lifetime lifetime, String threadName, int javaThreadPriority) { 52 final HandlerThread thread = new HandlerThread(threadName);
|
/external/chromium-trace/catapult/perf_insights/perf_insights/mappers/ |
task_info_map_function.html | 54 var threadName = eatTrailingDigits(thread.name) || 'Unknown'; 56 addToHistogram(timeInQueue, processName, threadName, flowEvent.duration, 71 var threadName = eatTrailingDigits(thread.name) || thread.tid; 78 addToHistogram(timeInTask, processName, threadName, slice.duration, 80 addToHistogram(cpuTimeInTask, processName, threadName, 98 function addToHistogram(dict, processName, threadName, value, url) { 100 dict[processName][threadName] = dict[processName][threadName] || 105 dict[processName][threadName].add(value, url);
|
/hardware/qcom/gps/core/ |
MsgTask.cpp | 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) : 50 tCreator(threadName, loopMain, 53 createPThread(threadName); 57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) : 59 createPThread(threadName); 86 void MsgTask::createPThread(const char* threadName) { 96 NULL != threadName) { 98 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
|
/hardware/qcom/gps/msm8084/core/ |
MsgTask.cpp | 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) : 50 tCreator(threadName, loopMain, 53 createPThread(threadName); 57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) : 59 createPThread(threadName); 86 void MsgTask::createPThread(const char* threadName) { 96 NULL != threadName) { 98 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
|
/hardware/qcom/gps/msm8960/core/ |
MsgTask.cpp | 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) : 50 tCreator(threadName, loopMain, 53 createPThread(threadName); 57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) : 59 createPThread(threadName); 71 void MsgTask::createPThread(const char* threadName) { 81 NULL != threadName) { 83 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
|
/hardware/qcom/gps/msm8994/core/ |
MsgTask.cpp | 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) : 50 tCreator(threadName, loopMain, 53 createPThread(threadName); 57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) : 59 createPThread(threadName); 86 void MsgTask::createPThread(const char* threadName) { 96 NULL != threadName) { 98 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
|
/system/core/debuggerd/ |
backtrace.cpp | 74 char* threadname = NULL; local 79 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp); 81 if (threadname) { 82 size_t len = strlen(threadname); 83 if (len && threadname[len - 1] == '\n') { 84 threadname[len - 1] = '\0'; 89 _LOG(log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", threadname ? threadname : "<unknown>", tid);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
NameTest.java | 58 String threadName; 70 threadName = thrdReply.getNextValueAsString(); 71 logWriter.println("\tthreadID = " + threadID + " threadName = " 72 + threadName); 73 if (threadName.length() == 0) {
|
ThreadGroupTest.java | 67 String groupName, threadName; 85 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 88 + "; threadName=" + threadName 92 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) {
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
Resume002Debuggee.java | 32 String threadName = Thread.currentThread().getName(); 33 System.out.println(threadName + " enters breakpointMethod"); 43 String threadName = Thread.currentThread().getName(); 44 logWriter.println("Thread \"" + threadName + "\" starts"); 46 logWriter.println("Thread \"" + threadName + "\" ends");
|
AllThreadsTest.java | 69 String threadName; 79 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 93 + "\"" + threadName + "\" " 97 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { 127 String threadName; 139 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 153 + "\"" + threadName + "\" " 199 String threadName; 208 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 210 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) [all...] |
/hardware/qcom/gps/msm8909/utils/ |
LocThread.cpp | 40 LocThreadDelegate(LocThread::tCreate creator, const char* threadName, 45 const char* threadName, LocRunnable* runnable, bool joinable); 66 const char* threadName, LocRunnable* runnable, bool joinable) : 71 if (!threadName) { 72 threadName = "LocThread"; 78 mThandle = creator(threadName, threadMain, this); 88 memcpy(lname, threadName, len); 112 const char* threadName, LocRunnable* runnable, bool joinable) { 115 thread = new LocThreadDelegate(creator, threadName, runnable, joinable); 211 bool LocThread::start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable) [all...] |
/hardware/qcom/gps/msm8996/utils/ |
LocThread.cpp | 40 LocThreadDelegate(LocThread::tCreate creator, const char* threadName, 45 const char* threadName, LocRunnable* runnable, bool joinable); 66 const char* threadName, LocRunnable* runnable, bool joinable) : 71 if (!threadName) { 72 threadName = "LocThread"; 78 mThandle = creator(threadName, threadMain, this); 88 memcpy(lname, threadName, len); 112 const char* threadName, LocRunnable* runnable, bool joinable) { 115 thread = new LocThreadDelegate(creator, threadName, runnable, joinable); 211 bool LocThread::start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable) [all...] |
/external/chromium-trace/catapult/tracing/tracing/extras/importer/linux_perf/ |
disk_parser.html | 54 openAsyncSlice: function(ts, category, threadName, pid, key, name) { 56 category + ':' + threadName, pid); 72 closeAsyncSlice: function(ts, category, threadName, pid, key, args) { 74 category + ':' + threadName, pid); 104 this.openAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, 121 this.closeAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, 140 this.openAsyncSlice(ts, 'ext4', eventBase.threadName, eventBase.pid, 157 this.closeAsyncSlice(ts, 'ext4', eventBase.threadName, eventBase.pid, 177 this.openAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid, 193 this.closeAsyncSlice(ts, 'f2fs', eventBase.threadName, eventBase.pid [all...] |
memreclaim_parser.html | 69 eventBase.threadName, tgid, pid); 86 eventBase.threadName, tgid, pid); 91 'memreclaim', eventBase.threadName, kthread.openSliceTS, 112 eventBase.threadName, tgid, pid); 129 eventBase.threadName, tgid, pid);
|
/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
ThreadOnlyModifierDebuggee.java | 109 String threadName = t.getName(); 110 logWriter.println("Thread " + threadName + " starts"); 113 logWriter.println("Wait for end of thread " + threadName); 118 logWriter.println("Thread " + threadName + " ends");
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
ThreadEndTest.java | 90 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 91 logWriter.println("=> threadName = " + threadName); 92 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
|