Home
last modified time | relevance | path

Searched refs:thread_handle (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dplatform_thread.cc32 PlatformThreadHandle* thread_handle) { in Create()
33 assert(thread_handle); in Create()
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL); in Create()
35 if (!(*thread_handle)) { in Create()
43 void PlatformThread::Join(PlatformThreadHandle thread_handle) { in Join() argument
44 assert(thread_handle); in Join()
45 DWORD result = WaitForSingleObject(thread_handle, INFINITE); in Join()
47 CloseHandle(thread_handle); in Join()
66 PlatformThreadHandle* thread_handle) {
67 assert(thread_handle);
31 Create(Delegate* delegate, PlatformThreadHandle* thread_handle) Create() argument
[all...]
H A Dplatform_thread.h55 // |*thread_handle| will be assigned a handle to the newly created thread,
61 static bool Create(Delegate* delegate, PlatformThreadHandle* thread_handle);
65 // |thread_handle|.
66 static void Join(PlatformThreadHandle thread_handle);
/third_party/curl/lib/
H A Dcurl_threads.c113 curl_win_thread_handle_t thread_handle; in Curl_thread_create() local
115 thread_handle = CreateThread(NULL, 0, func, arg, 0, NULL); in Curl_thread_create()
117 thread_handle = _beginthreadex(NULL, 0, func, arg, 0, NULL); in Curl_thread_create()
119 t = (curl_thread_t)thread_handle; in Curl_thread_create()
/third_party/astc-encoder/Source/
H A Dastcenccli_platform_dependents.cpp176 pthread_t thread_handle; member
230 &(thread_descs[actual_thread_count].thread_handle), in launch_threads()
241 thread_descs[actual_thread_count].thread_handle, in launch_threads()
263 pthread_join(thread_descs[i].thread_handle, nullptr); in launch_threads()
/third_party/gn/src/base/win/
H A Dscoped_process_information.h53 HANDLE thread_handle() const { return thread_handle_.Get(); } in thread_handle() function in base::win::ScopedProcessInformation
H A Dscoped_process_information.cc77 CheckAndDuplicateHandle(other.thread_handle(), &thread_handle_)) { in DuplicateFrom()
/third_party/googletest/googletest/src/
H A Dgtest-port.cc428 HANDLE thread_handle = ::CreateThread( in CreateThread() local
435 GTEST_CHECK_(thread_handle != nullptr) in CreateThread()
437 if (thread_handle == nullptr) { in CreateThread()
440 return thread_handle; in CreateThread()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-port.cc471 HANDLE thread_handle = ::CreateThread( in CreateThread() local
478 GTEST_CHECK_(thread_handle != nullptr) in CreateThread()
480 if (thread_handle == nullptr) { in CreateThread()
483 return thread_handle; in CreateThread()
/third_party/node/deps/googletest/src/
H A Dgtest-port.cc434 HANDLE thread_handle = ::CreateThread( in CreateThread() local
441 GTEST_CHECK_(thread_handle != nullptr) in CreateThread()
443 if (thread_handle == nullptr) { in CreateThread()
446 return thread_handle; in CreateThread()
/third_party/node/deps/v8/src/base/platform/
H A Dtime.cc800 ThreadTicks ThreadTicks::GetForThread(const HANDLE& thread_handle) { in GetForThread() argument
805 ::QueryThreadCycleTime(thread_handle, &thread_cycle_time); in GetForThread()
H A Dtime.h485 static ThreadTicks GetForThread(const HANDLE& thread_handle);
/third_party/rust/crates/libc/src/unix/bsd/apple/
H A Dmod.rs1196 pub thread_handle: u64,
2139 && self.thread_handle == other.thread_handle in eq()
2148 .field("thread_handle", &self.thread_handle) in fmt()
2156 self.thread_handle.hash(state); in hash()

Completed in 22 milliseconds