Home
last modified time | relevance | path

Searched refs:thread_params (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/win/
Dscoped_handle_test_dll.cc29 ThreadParams* thread_params = reinterpret_cast<ThreadParams*>(params); in ThreadFunc() local
32 ::SetEvent(thread_params->ready_event); in ThreadFunc()
33 ::WaitForSingleObject(thread_params->start_event, INFINITE); in ThreadFunc()
54 ThreadParams thread_params = { ready_event, start_event }; in InternalRunThreadTest() local
59 reinterpret_cast<void*>(&thread_params), 0, nullptr); in InternalRunThreadTest()
/external/libchrome/base/threading/
Dplatform_thread_posix.cc51 std::unique_ptr<ThreadParams> thread_params( in ThreadFunc() local
54 delegate = thread_params->delegate; in ThreadFunc()
55 if (!thread_params->joinable) in ThreadFunc()
62 PlatformThread::SetCurrentThreadPriority(thread_params->priority); in ThreadFunc()