Home
last modified time | relevance | path

Searched refs:wait_result (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Windows/
H A Dqueue_user_work_item.cpp42 unsigned wait_result = WaitForSingleObject(done, 10 * 1000); in main() local
43 if (wait_result == WAIT_ABANDONED) in main()
45 if (wait_result != WAIT_OBJECT_0) { in main()
/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cpp29 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); in main() local
30 if (wait_result < 0) { in main()
34 if (wait_result == clone_pid && WIFEXITED(status)) { in main()
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DHostThreadWindows.cpp36 DWORD wait_result = ::WaitForSingleObject(m_thread, INFINITE); in Join() local
37 if (WAIT_OBJECT_0 == wait_result && result) { in Join()
42 } else if (WAIT_OBJECT_0 != wait_result) in Join()
H A DPipeWindows.cpp292 DWORD wait_result = ::WaitForSingleObject(m_read_overlapped.hEvent, timeout); in ReadWithTimeout() local
293 if (wait_result != WAIT_OBJECT_0) { in ReadWithTimeout()
302 if (wait_result == WAIT_TIMEOUT) { in ReadWithTimeout()
H A DConnectionGenericFileWindows.cpp191 DWORD wait_result = in Read() local
196 switch (wait_result) { in Read()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DDebuggerThread.cpp195 DWORD wait_result = WaitForSingleObject(m_debugging_ended_event, 5000); in StopDebugging() local
196 if (wait_result != WAIT_OBJECT_0) { in StopDebugging()
199 m_debugging_ended_event, wait_result); in StopDebugging()
238 BOOL wait_result = WaitForDebugEvent(&dbe, INFINITE); in DebugLoop() local
239 if (wait_result) { in DebugLoop()