Home | History | Annotate | Download | only in base

Lines Matching refs:thread_

151       thread_(NULL),
200 ret = ::SetThreadPriority(thread_, THREAD_PRIORITY_NORMAL);
202 ret = ::SetThreadPriority(thread_, THREAD_PRIORITY_HIGHEST);
204 ret = ::SetThreadPriority(thread_, THREAD_PRIORITY_ABOVE_NORMAL);
206 ret = ::SetThreadPriority(thread_, THREAD_PRIORITY_IDLE);
242 thread_ = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)PreRun, init, flags,
244 if (thread_) {
248 ::ResumeThread(thread_);
283 int error_code = pthread_create(&thread_, &attr, PreRun, init);
297 WaitForSingleObject(thread_, INFINITE);
298 CloseHandle(thread_);
299 thread_ = NULL;
303 pthread_join(thread_, &pv);
530 thread_ = OpenThread(SYNCHRONIZE, FALSE, GetCurrentThreadId());
531 if (!thread_) {
537 thread_ = pthread_self();
549 if (!CloseHandle(thread_)) {