HomeSort by relevance Sort by last modified time
    Searched defs:joinable (Results 1 - 4 of 4) sorted by 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/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;

Completed in 98 milliseconds