/hardware/qcom/gps/msm8909/core/ |
LocDualContext.h | 45 const char* name, bool joinable = true); 46 static const MsgTask* getMsgTask(const char* name, bool joinable = true); 61 const char* name, bool joinable = true); 62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) { 63 return getLocFgContext(NULL, NULL, name, joinable); 66 const char* name, bool joinable = true); 67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) { 68 return getLocBgContext(NULL, NULL, name, joinable);
|
LocDualContext.cpp | 67 const char* name, bool joinable) 70 mMsgTask = new MsgTask(tCreator, name, joinable); 76 const MsgTask* LocDualContext::getMsgTask(const char* name, bool joinable) { 77 return getMsgTask((LocThread::tCreate)NULL, name, joinable); 81 LocMsg* firstMsg, const char* name, bool joinable) 87 const MsgTask* msgTask = getMsgTask(tCreator, name, joinable); 106 LocMsg* firstMsg, const char* name, bool joinable) 112 const MsgTask* msgTask = getMsgTask(tCreator, name, joinable);
|
/hardware/qcom/gps/msm8996/core/ |
LocDualContext.h | 45 const char* name, bool joinable = true); 46 static const MsgTask* getMsgTask(const char* name, bool joinable = true); 61 const char* name, bool joinable = true); 62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) { 63 return getLocFgContext(NULL, NULL, name, joinable); 66 const char* name, bool joinable = true); 67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) { 68 return getLocBgContext(NULL, NULL, name, joinable);
|
LocDualContext.cpp | 67 const char* name, bool joinable) 70 mMsgTask = new MsgTask(tCreator, name, joinable); 76 const MsgTask* LocDualContext::getMsgTask(const char* name, bool joinable) { 77 return getMsgTask((LocThread::tCreate)NULL, name, joinable); 81 LocMsg* firstMsg, const char* name, bool joinable) 87 const MsgTask* msgTask = getMsgTask(tCreator, name, joinable); 106 LocMsg* firstMsg, const char* name, bool joinable) 112 const MsgTask* msgTask = getMsgTask(tCreator, name, joinable);
|
/hardware/qcom/gps/msm8909/utils/ |
LocThread.h | 71 // The thread could be either joinable or detached. 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); 84 // NOTE: if this is a joinable thread, this stop may block
|
MsgTask.h | 48 MsgTask(LocThread::tCreate tCreator, const char* threadName = NULL, bool joinable = true); 49 MsgTask(const char* threadName = NULL, bool joinable = true);
|
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.cpp | 41 LocRunnable* runnable, bool joinable); 45 const char* threadName, LocRunnable* runnable, bool joinable); 47 // bye() is for the parent thread to go away. if joinable, 66 const char* threadName, LocRunnable* runnable, bool joinable) : 67 mRunnable(runnable), mJoinable(joinable), mThandle(NULL), 93 // detach, if not joinable 94 if (!joinable) { 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.h | 71 // The thread could be either joinable or detached. 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); 84 // NOTE: if this is a joinable thread, this stop may block
|
MsgTask.h | 48 MsgTask(LocThread::tCreate tCreator, const char* threadName = NULL, bool joinable = true); 49 MsgTask(const char* threadName = NULL, bool joinable = true);
|
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.cpp | 41 LocRunnable* runnable, bool joinable); 45 const char* threadName, LocRunnable* runnable, bool joinable); 47 // bye() is for the parent thread to go away. if joinable, 66 const char* threadName, LocRunnable* runnable, bool joinable) : 67 mRunnable(runnable), mJoinable(joinable), mThandle(NULL), 93 // detach, if not joinable 94 if (!joinable) { 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/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/ |
join.pass.cpp | 50 assert(t0.joinable()); 52 assert(!t0.joinable());
|
joinable.pass.cpp | 16 // bool joinable() const; 50 assert(t0.joinable()); 52 assert(!t0.joinable());
|
detach.pass.cpp | 65 assert(t0.joinable()); 67 assert(!t0.joinable());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/ |
detach.pass.cpp | 47 assert(t0.joinable()); 49 assert(!t0.joinable());
|
join.pass.cpp | 47 assert(t0.joinable()); 49 assert(!t0.joinable());
|
joinable.pass.cpp | 14 // bool joinable() const; 47 assert(t0.joinable()); 49 assert(!t0.joinable());
|
/external/libchrome/base/threading/ |
platform_thread_posix.cc | 40 : delegate(NULL), joinable(false), priority(ThreadPriority::NORMAL) {} 43 bool joinable; member in struct:base::__anon15858::ThreadParams 56 if (!thread_params->joinable) 78 bool joinable, 88 // Pthreads are joinable by default, so only specify the detached 89 // attribute if the thread should be non-joinable. 90 if (!joinable) 102 params->joinable = joinable; 187 return CreateThread(stack_size, true, // joinable threa [all...] |
/external/valgrind/drd/ |
drd_pthread_intercepts.c | 396 * Tell DRD whether 'tid' is a joinable thread or a detached thread. 398 static void DRD_(set_joinable)(const pthread_t tid, const int joinable) 400 assert(joinable == 0 || joinable == 1); 402 tid, joinable, 0, 0, 0); 548 * Find out whether the thread will be started as a joinable thread 550 * this means that the new thread will be started as a joinable thread. 604 * Find out whether the thread will be started as a joinable thread [all...] |
drd_thread.h | 170 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable); 227 * - The ID refers either to a thread known by the Valgrind core, a joinable
|
drd_thread.c | 545 * joinable threads, not for detached threads. 564 * POSIX thread ID associated with the detached thread. For joinable 627 /** Returns true for joinable threads and false for detached threads. */ 635 /** Store the thread mode: joinable or detached. */ 642 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable) 646 tl_assert((!! joinable) == joinable); 649 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable; [all...] |
/external/google-benchmark/src/ |
benchmark.cc | 646 if (thread.joinable())
|
/external/guice/extensions/persist/lib/ |
hibernate-entitymanager.jar | |
hibernate3.jar | |