/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);
|
/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);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
NameTest.java | 59 String threadName; 71 threadName = thrdReply.getNextValueAsString(); 72 logWriter.println("\tthreadID = " + threadID + " threadName = " 73 + threadName); 74 if (threadName.length() == 0) {
|
ThreadGroupTest.java | 68 String groupName, threadName; 86 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 89 + "; threadName=" + threadName 93 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 | 70 String threadName; 80 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 94 + "\"" + threadName + "\" " 98 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) { 128 String threadName; 140 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 154 + "\"" + threadName + "\" " 200 String threadName; 209 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 211 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) [all...] |
SuspendTest.java | 68 String threadName; 78 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 92 + "\"" + threadName + "\" " 98 + threadName + "\"" + " is not in suspended state");
|
/hardware/qcom/gps/msm8909w_3100/utils/ |
LocThread.cpp | 41 LocThreadDelegate(LocThread::tCreate creator, const char* threadName, 46 const char* threadName, LocRunnable* runnable, bool joinable); 67 const char* threadName, LocRunnable* runnable, bool joinable) : 72 if (!threadName) { 73 threadName = "LocThread"; 79 mThandle = creator(threadName, threadMain, this); 88 int len = (sizeof(lname)>sizeof(threadName)) ? 89 (sizeof(threadName) -1):(sizeof(lname) - 1); 90 memcpy(lname, threadName, len); 114 const char* threadName, LocRunnable* runnable, bool joinable) [all...] |
/hardware/qcom/gps/msm8998/utils/ |
LocThread.cpp | 41 LocThreadDelegate(LocThread::tCreate creator, const char* threadName, 46 const char* threadName, LocRunnable* runnable, bool joinable); 67 const char* threadName, LocRunnable* runnable, bool joinable) : 72 if (!threadName) { 73 threadName = "LocThread"; 79 mThandle = creator(threadName, threadMain, this); 88 int len = (sizeof(lname)>sizeof(threadName)) ? 89 (sizeof(threadName) -1):(sizeof(lname) - 1); 90 memcpy(lname, threadName, len); 114 const char* threadName, LocRunnable* runnable, bool joinable) [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/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/ |
LoadThread.java | 31 public LoadThread(String threadName) { 32 super(threadName);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
ThreadOnlyModifierDebuggee.java | 110 String threadName = t.getName(); 111 logWriter.println("Thread " + threadName + " starts"); 114 logWriter.println("Wait for end of thread " + threadName); 119 logWriter.println("Thread " + threadName + " ends");
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
ThreadEndTest.java | 83 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 84 logWriter.println("=> threadName = " + threadName); 85 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
|
ThreadStartTest.java | 89 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID); 90 logWriter.println("=> threadName = " + threadName); 93 receivedExpectedThreadStartEvent = threadName.equals(EventDebuggee.testedThreadName);
|