/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A D | platform_thread.cc | 32 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 D | platform_thread.h | 55 // |*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 D | curl_threads.c | 113 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 D | astcenccli_platform_dependents.cpp | 176 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 D | scoped_process_information.h | 53 HANDLE thread_handle() const { return thread_handle_.Get(); } in thread_handle() function in base::win::ScopedProcessInformation
|
H A D | scoped_process_information.cc | 77 CheckAndDuplicateHandle(other.thread_handle(), &thread_handle_)) { in DuplicateFrom()
|
/third_party/googletest/googletest/src/ |
H A D | gtest-port.cc | 428 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 D | gtest-port.cc | 471 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 D | gtest-port.cc | 434 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 D | time.cc | 800 ThreadTicks ThreadTicks::GetForThread(const HANDLE& thread_handle) { in GetForThread() argument 805 ::QueryThreadCycleTime(thread_handle, &thread_cycle_time); in GetForThread()
|
H A D | time.h | 485 static ThreadTicks GetForThread(const HANDLE& thread_handle);
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 1196 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()
|