Home | History | Annotate | Download | only in threading

Lines Matching refs:thread_handle

92                   PlatformThreadHandle* thread_handle,
117 params.handle = thread_handle;
136 CHECK_EQ(handle, thread_handle->platform_handle());
197 PlatformThreadHandle* thread_handle) {
200 delegate, thread_handle, kThreadPriority_Normal);
205 PlatformThreadHandle* thread_handle,
209 delegate, thread_handle, priority);
223 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
225 // the thread referred to by |thread_handle| may still be running long-lived /
228 pthread_join(thread_handle.handle_, NULL);