HomeSort by relevance Sort by last modified time
    Searched full:waitforsingleobject (Results 1 - 25 of 210) sorted by null

1 2 3 4 5 6 7 8 9

  /external/compiler-rt/test/asan/TestCases/Windows/
thread_stack_reuse.cc 27 if (WAIT_OBJECT_0 != WaitForSingleObject(thr, INFINITE))
33 if (WAIT_OBJECT_0 != WaitForSingleObject(thr, INFINITE))
beginthreadex.cc 18 if (WAIT_OBJECT_0 != WaitForSingleObject(thr, INFINITE))
thread_simple.cc 18 if (WAIT_OBJECT_0 != WaitForSingleObject(thr, INFINITE))
thread_stress.cc 23 if (WAIT_OBJECT_0 != WaitForSingleObject(thr[i], INFINITE))
dll_thread_stack_array_left_oob.cc 33 if (WAIT_OBJECT_0 != WaitForSingleObject(thr, INFINITE))
thread_stack_array_left_oob.cc 26 WaitForSingleObject(thr, INFINITE);
thread_stack_array_right_oob.cc 26 WaitForSingleObject(thr, INFINITE);
  /external/chromium_org/chrome/browser/hang_monitor/
hang_crash_dump_win.cc 39 WaitForSingleObject(remote_thread, kGenerateDumpTimeoutMS);
45 WaitForSingleObject(hprocess, kTerminateTimeoutMS);
70 WaitForSingleObject(remote_thread, kGenerateDumpTimeoutMS);
  /external/chromium_org/base/synchronization/
waitable_event_win.cc 49 DWORD result = WaitForSingleObject(handle_.Get(), INFINITE);
52 DCHECK_EQ(WAIT_OBJECT_0, result) << "WaitForSingleObject failed";
62 DWORD result = WaitForSingleObject(handle_.Get(),
72 NOTREACHED() << "WaitForSingleObject failed";
  /external/jemalloc/test/src/
thd.c 17 if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) {
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 72 if (WaitForSingleObject(m_proc.hProcess, INFINITE) == WAIT_FAILED) {
91 DWORD status = WaitForSingleObject(m_proc.hProcess, 0);
142 if(WaitForSingleObject(hProc, INFINITE) == WAIT_FAILED) {
164 DWORD ret = WaitForSingleObject(process, 0);
osThreadWin.cpp 54 if(WaitForSingleObject(m_thread, INFINITE) == WAIT_FAILED) {
78 if(WaitForSingleObject(m_thread, 0) == WAIT_OBJECT_0) {
  /external/chromium_org/net/base/
winsock_util.cc 37 DWORD wait_rv = WaitForSingleObject(hEvent, 0);
43 DWORD wait_rv = WaitForSingleObject(hEvent, 0);
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
win_ce_semaphore.c 26 6. The wait function emulates WaitForSingleObject only. An emulation of
82 WaitForSingleObject (hSynch->hMutex, INFINITE);
110 WaitForSingleObject (hSemCE->hMutex, INFINITE);
136 /* Windows CE semaphore equivalent of WaitForSingleObject. */
140 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
157 WaitResult = WaitForSingleObject (hSemCE->hEvent, dwMilliseconds);
169 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
  /external/chromium_org/base/process/
kill_win.cc 98 if (WAIT_OBJECT_0 != WaitForSingleObject(process, 60 * 1000))
144 DWORD wait_result = WaitForSingleObject(handle, 0);
152 DPLOG(ERROR) << "WaitForSingleObject() failed";
190 if (::WaitForSingleObject(handle, timeout.InMilliseconds()) != WAIT_OBJECT_0)
214 DWORD wait_result = WaitForSingleObject(process, remaining_wait);
241 if (WaitForSingleObject(process, 0) == WAIT_OBJECT_0) {
  /external/qemu/util/
qemu-thread-win32.c 156 WaitForSingleObject(cond->continue_event, INFINITE);
173 WaitForSingleObject(cond->sema, INFINITE);
213 int rc = WaitForSingleObject(sem->sema, ms);
225 if (WaitForSingleObject(sem->sema, INFINITE) != WAIT_OBJECT_0) {
253 WaitForSingleObject(ev->event, INFINITE);
318 WaitForSingleObject(handle, INFINITE);
  /external/chromium_org/third_party/skia/src/utils/
SkThreadUtils_win.cpp 35 if (WaitForSingleObject(winData->fCancelEvent, 0) == WAIT_OBJECT_0) {
97 WaitForSingleObject(winData->fHandle, INFINITE);
  /external/deqp/framework/delibs/dethread/win32/
deSemaphoreWin32.c 67 DWORD ret = WaitForSingleObject(handle, INFINITE);
74 DWORD ret = WaitForSingleObject(handle, 0);
  /external/skia/src/utils/
SkThreadUtils_win.cpp 35 if (WaitForSingleObject(winData->fCancelEvent, 0) == WAIT_OBJECT_0) {
97 WaitForSingleObject(winData->fHandle, INFINITE);
  /external/chromium_org/ash/test/
test_metro_viewer_process_host.cc 35 ::WaitForSingleObject(viewer_process, INFINITE);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_mutex_lock.c 88 if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE))
127 if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE))
175 if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE))
235 if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE))
  /external/chromium_org/third_party/angle/tests/standalone_tests/
EGLThreadTest.cpp 75 DWORD waitResult = WaitForSingleObject(threadHandle, 1000);
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
event_win.cc 40 unsigned long res = WaitForSingleObject(event_, max_time);
  /external/webrtc/src/system_wrappers/source/
event_win.cc 43 unsigned long res = WaitForSingleObject(_event, maxTime);
  /sdk/emulator/opengl/shared/emugl/common/testing/
test_thread.h 61 WaitForSingleObject(mThread, INFINITE);

Completed in 1135 milliseconds

1 2 3 4 5 6 7 8 9