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

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8909/utils/
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)) {
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);
  /hardware/qcom/gps/msm8909w_3100/utils/
MsgTask.cpp 43 const char* threadName, bool joinable) :
45 if (!mThread->start(tCreator, threadName, this, joinable)) {
51 MsgTask::MsgTask(const char* threadName, bool joinable) :
53 if (!mThread->start(threadName, this, joinable)) {
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);
  /hardware/qcom/gps/msm8996/utils/
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)) {
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);
  /hardware/qcom/gps/msm8998/utils/
MsgTask.cpp 43 const char* threadName, bool joinable) :
45 if (!mThread->start(tCreator, threadName, this, joinable)) {
51 MsgTask::MsgTask(const char* threadName, bool joinable) :
53 if (!mThread->start(threadName, this, joinable)) {
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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
TestTaskQueue.java 35 public TestTaskQueue(String threadName) {
36 HandlerThread th = new HandlerThread(threadName);
  /device/generic/goldfish/camera/
WorkerThread.cpp 27 WorkerThread::WorkerThread(const char* threadName,
34 mThreadName(threadName) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
SuspendTest.java 100 String threadName = null;
102 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
110 if ( threadName.equals(testedThreadsNames[k]) ) {
121 + "; threadName = " + threadName);
155 logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName);
167 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName);
  /system/core/libutils/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,
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 225 final String threadName;
228 public ThreadInfo(String threadName) {
229 this.threadName = threadName;
307 String threadName = null;
309 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
316 if (threadInfo.threadName.equals(threadName) ) {
330 + threadInfo.threadName);
360 + " (" + threadInfo.threadName + ")")
    [all...]
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeEvent.java 52 ImeEvent(@NonNull String eventName, int nestLevel, @NonNull String threadName, int threadId,
56 this(eventName, nestLevel, threadName, threadId, isMainThread, enterTimestamp,
61 private ImeEvent(@NonNull String eventName, int nestLevel, @NonNull String threadName,
68 mThreadName = threadName;
115 final String threadName = bundle.getString("mThreadName");
138 return new ImeEvent(eventName, nestLevel, threadName,
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 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/msm8084/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);
  /hardware/qcom/gps/msm8994/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/libmojo/third_party/catapult/devil/devil/utils/
run_tests_helper.py 16 def __init__(self, fmt='%(threadName)-4s %(message)s'):

Completed in 362 milliseconds

12 3 4 5 6 7 8 91011>>