Searched refs:thread_params (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/base/threading/
H A Dplatform_thread_posix.cc59 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
61 PlatformThread::Delegate* delegate = thread_params->delegate;
62 if (!thread_params->joinable)
65 if (thread_params->priority != kThreadPriority_Normal) {
67 thread_params->priority);
72 *(thread_params->handle) = PlatformThreadHandle(pthread_self(),
74 thread_params->handle_set.Signal();
H A Dplatform_thread_win.cc52 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
53 PlatformThread::Delegate* delegate = thread_params->delegate;
54 if (!thread_params->joinable)
73 delete thread_params;
/external/chromium/base/threading/
H A Dplatform_thread_win.cc32 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
33 PlatformThread::Delegate* delegate = thread_params->delegate;
34 if (!thread_params->joinable)
36 delete thread_params;
H A Dplatform_thread_posix.cc46 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
47 PlatformThread::Delegate* delegate = thread_params->delegate;
48 if (!thread_params->joinable)
50 delete thread_params;

Completed in 104 milliseconds