HomeSort by relevance Sort by last modified time
    Searched refs:threadName (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8909/utils/
LocThread.h 79 bool start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable = true);
80 inline bool start(const char* threadName, LocRunnable* runnable, bool joinable = true) {
81 return start(NULL, threadName, runnable, joinable);
MsgTask.h 48 MsgTask(LocThread::tCreate tCreator, const char* threadName = NULL, bool joinable = true);
49 MsgTask(const char* threadName = NULL, bool joinable = true);
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...]
MsgTask.cpp 44 const char* threadName, bool joinable) :
46 if (!mThread->start(tCreator, threadName, this, joinable)) {
52 MsgTask::MsgTask(const char* threadName, bool joinable) :
54 if (!mThread->start(threadName, this, joinable)) {
  /hardware/qcom/gps/msm8996/utils/
LocThread.h 79 bool start(tCreate creator, const char* threadName, LocRunnable* runnable, bool joinable = true);
80 inline bool start(const char* threadName, LocRunnable* runnable, bool joinable = true) {
81 return start(NULL, threadName, runnable, joinable);
MsgTask.h 48 MsgTask(LocThread::tCreate tCreator, const char* threadName = NULL, bool joinable = true);
49 MsgTask(const char* threadName = NULL, bool joinable = true);
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...]
MsgTask.cpp 44 const char* threadName, bool joinable) :
46 if (!mThread->start(tCreator, threadName, this, joinable)) {
52 MsgTask::MsgTask(const char* threadName, bool joinable) :
54 if (!mThread->start(threadName, this, joinable)) {
  /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/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);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /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");
SuspendTest.java 67 String threadName;
77 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
91 + "\"" + threadName + "\" "
97 + threadName + "\"" + " is not in suspended state");
ResumeTest.java 224 final String threadName;
227 public ThreadInfo(String threadName) {
228 this.threadName = threadName;
306 String threadName = null;
308 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
315 if (threadInfo.threadName.equals(threadName) ) {
329 + threadInfo.threadName);
359 + " (" + threadInfo.threadName + ")")
    [all...]
  /system/core/include/utils/
AndroidThreads.h 42 const char* threadName,
54 const char* threadName,
66 const char* threadName,
106 const char* threadName = "android:unnamed_thread",
111 return androidCreateThreadEtc(entryFunction, userData, 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);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /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);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /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);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /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)) {
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 run(threadName, android::PRIORITY_AUDIO);
  /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");

Completed in 259 milliseconds

1 2 3 4 5 6 7 8 91011>>