HomeSort by relevance Sort by last modified time
    Searched refs:joinable (Results 1 - 16 of 16) sorted by null

  /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);
  /external/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());
Android.mk 39 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/joinable
40 test_src := joinable.pass.cpp
  /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::__anon7137::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;
206 return CreateThread(stack_size, true /* joinable thread */
    [all...]
platform_thread_win.cc 48 bool joinable; member in struct:base::__anon7138::ThreadParams
54 if (!thread_params->joinable)
90 // |out_thread_handle| may be NULL, in which case a non-joinable thread is
104 params->joinable = out_thread_handle != NULL;
  /external/lldb/test/api/multithreaded/
listener_test.cpp 26 if (g_listener_thread.joinable())
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 312 * Tell DRD whether 'tid' is a joinable thread or a detached thread.
314 static void DRD_(set_joinable)(const pthread_t tid, const int joinable)
316 assert(joinable == 0 || joinable == 1);
318 tid, joinable, 0, 0, 0);
464 * Find out whether the thread will be started as a joinable thread
466 * 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...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]

Completed in 763 milliseconds