/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prtpool.h | 68 PR_QueueJob(PRThreadPool *tpool, PRJobFn fn, void *arg, PRBool joinable); 73 PRJobFn fn, void * arg, PRBool joinable); 78 PRJobFn fn, void * arg, PRBool joinable); 83 PRJobFn fn, void * arg, PRBool joinable); 88 const PRNetAddr *addr, PRJobFn fn, void * arg, PRBool joinable); 93 PRJobFn fn, void * arg, PRBool 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/chromium_org/base/threading/ |
platform_thread_posix.cc | 44 joinable(false), 51 bool joinable; member in struct:base::__anon6372::ThreadParams 62 if (!thread_params->joinable) 90 bool CreateThread(size_t stack_size, bool joinable, 100 // Pthreads are joinable by default, so only specify the detached 101 // attribute if the thread should be non-joinable. 102 if (!joinable) { 115 params.joinable = joinable; 199 return CreateThread(stack_size, true /* joinable thread */ [all...] |
platform_thread_win.cc | 48 bool joinable; member in struct:base::__anon6373::ThreadParams 54 if (!thread_params->joinable) 83 // |out_thread_handle| may be NULL, in which case a non-joinable thread is 97 params->joinable = out_thread_handle != NULL;
|
/external/chromium/base/threading/ |
platform_thread_posix.cc | 42 bool joinable; member in struct:base::__anon4203::ThreadParams 48 if (!thread_params->joinable) 55 bool CreateThread(size_t stack_size, bool joinable, 66 // Pthreads are joinable by default, so only specify the detached attribute if 67 // the thread should be non-joinable. 68 if (!joinable) { 108 params->joinable = joinable; 203 return CreateThread(stack_size, true /* joinable thread */, 211 bool result = CreateThread(stack_size, false /* non-joinable thread */ [all...] |
platform_thread_win.cc | 28 bool joinable; member in struct:base::__anon4204::ThreadParams 34 if (!thread_params->joinable) 42 // |out_thread_handle| may be NULL, in which case a non-joinable thread is 57 params->joinable = out_thread_handle != NULL;
|
/external/valgrind/main/drd/ |
drd_pthread_intercepts.c | 307 * Tell DRD whether 'tid' is a joinable thread or a detached thread. 309 static void DRD_(set_joinable)(const pthread_t tid, const int joinable) 311 assert(joinable == 0 || joinable == 1); 313 tid, joinable, 0, 0, 0); 459 * Find out whether the thread will be started as a joinable thread 461 * this means that the new thread will be started as a joinable thread. [all...] |
drd_thread.h | 158 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable); 211 * - The ID refers either to a thread known by the Valgrind core, a joinable
|
drd_thread.c | 519 * joinable threads, not for detached threads. 538 * POSIX thread ID associated with the detached thread. For joinable 591 /** Returns true for joinable threads and false for detached threads. */ 599 /** Store the thread mode: joinable or detached. */ 606 void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable) 610 tl_assert(!! joinable == joinable); 613 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable; [all...] |