Searched refs:hThread (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Threading.inc | 30 HANDLE hThread = (HANDLE)::_beginthreadex(NULL, StackSizeInBytes.value_or(0), 33 if (!hThread) { 37 return hThread; 40 void llvm_thread_join_impl(HANDLE hThread) { 41 if (::WaitForSingleObject(hThread, INFINITE) == WAIT_FAILED) { 46 void llvm_thread_detach_impl(HANDLE hThread) { 47 if (::CloseHandle(hThread) == FALSE) { 52 DWORD llvm_thread_get_id_impl(HANDLE hThread) { return ::GetThreadId(hThread); }
|
H A D | Signals.inc | 121 HANDLE hThread, 239 HANDLE hProcess, HANDLE hThread, 254 while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame, 316 HANDLE hThread, STACKFRAME64 &StackFrame, 331 if (printStackTraceWithLLVMSymbolizer(OS, hProcess, hThread, StackFrame, 337 if (!fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
|
H A D | Program.inc | 316 ScopedCommonHandle hThread(pi.hThread); 347 ::ResumeThread(pi.hThread);
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | expand_path.c | 146 HANDLE hThread = NULL; in _expand_userid() local 152 hThread = GetCurrentThread(); in _expand_userid() 154 if (!OpenThreadToken(hThread, TOKEN_QUERY, in _expand_userid()
|
/freebsd/contrib/sqlite3/tea/win/ |
H A D | nmakehlp.c | 292 CloseHandle(pi.hThread); in CheckForCompilerFeature() 426 CloseHandle(pi.hThread); in CheckForLinkerFeature()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_win.cpp | 270 CloseHandle(pi.hThread); in StartSymbolizerSubprocess()
|
/freebsd/contrib/ntp/sntp/libevent/test/ |
H A D | tinytest.c | 244 CloseHandle(info.hThread); in testcase_run_forked_()
|
/freebsd/contrib/libevent/test/ |
H A D | tinytest.c | 244 CloseHandle(info.hThread); in testcase_run_forked_()
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-death-test.cc | 826 ::CloseHandle(process_info.hThread); in AssumeRole()
|