Searched refs:wait (Results 1 - 25 of 785) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dtransparent-union-pointer.c5 union wait *__uptr;
9 extern int wait (__WAIT_STATUS __stat_loc);
13 wait(&status);
/external/valgrind/main/gdbserver_tests/
H A DmcinvokeRU.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait
[all...]
H A DmcinvokeWS.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait
[all...]
H A DmcinvokeRU.stdoutB.exp2 gdbserver: continuing after wait ...
4 gdbserver: continuing after wait ...
6 gdbserver: continuing after wait ...
8 gdbserver: continuing after wait ...
10 gdbserver: continuing after wait ...
12 gdbserver: continuing after wait ...
14 gdbserver: continuing after wait ...
16 gdbserver: continuing after wait ...
18 gdbserver: continuing after wait ...
20 gdbserver: continuing after wait
[all...]
H A DmcinvokeWS.stdoutB.exp2 gdbserver: continuing after wait ...
4 gdbserver: continuing after wait ...
6 gdbserver: continuing after wait ...
8 gdbserver: continuing after wait ...
10 gdbserver: continuing after wait ...
12 gdbserver: continuing after wait ...
14 gdbserver: continuing after wait ...
16 gdbserver: continuing after wait ...
18 gdbserver: continuing after wait ...
20 gdbserver: continuing after wait
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.h59 ** Function: wait
61 ** Description: Block the caller and wait for a condition.
66 void wait (Mutex& mutex);
71 ** Function: wait
73 ** Description: Block the caller and wait for a condition.
76 ** Returns: True if wait is successful; false if timeout occurs.
79 bool wait (Mutex& mutex, long millisec);
H A DSyncEvent.h63 ** Function: wait
65 ** Description: Block the thread and wait for the event to occur.
70 void wait () function in class:SyncEvent
72 mCondVar.wait (mMutex);
78 ** Function: wait
80 ** Description: Block the thread and wait for the event to occur.
83 ** Returns: True if wait is successful; false if timeout occurs.
86 bool wait (long millisec) function in class:SyncEvent
88 bool retVal = mCondVar.wait (mMutex, millisec);
/external/strace/test/
H A Dfork.c3 #include <sys/wait.h>
10 wait(0);
H A Dvfork.c3 #include <sys/wait.h>
10 wait(0);
/external/chromium_org/android_webview/browser/
H A Dscoped_allow_wait_for_legacy_web_view_api.h17 base::ThreadRestrictions::ScopedAllowWait wait; member in class:ScopedAllowWaitForLegacyWebViewApi
/external/skia/dm/
H A DDMTaskRunner.cpp12 void TaskRunner::wait() { function in class:DM::TaskRunner
13 // These wait calls block until each threadpool is done. We don't allow
14 // spawning new child GPU tasks, so we can wait for that first knowing
16 // both CPU and GPU tasks can spawn off new CPU work, so we wait for that last.
17 fGpu.wait();
18 fCpu.wait();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebWaitableEvent.h39 // wait until another thread to finish some work.
45 virtual void wait() = 0;
/external/chromium_org/third_party/skia/dm/
H A DDMTaskRunner.cpp9 void TaskRunner::wait() { function in class:DM::TaskRunner
14 fCpuWork.wait();
/external/chromium_org/third_party/skia/src/utils/
H A DSkTaskGroup.h23 ~SkTaskGroup() { this->wait(); }
29 // You may safely reuse this SkTaskGroup after wait() returns.
30 void wait();
/external/skia/src/utils/
H A DSkCountdown.cpp26 void SkCountdown::wait() { function in class:SkCountdown
29 fReady.wait();
/external/bison/lib/
H A Dwaitpid.c20 #include <sys/wait.h>
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.h45 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait);
/external/ltrace/testsuite/ltrace.minor/
H A Dtrace-fork.c30 wait();
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.h45 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Dbench_wsh.py52 wait = float(parts[0])
57 time.sleep(wait)
/external/compiler-rt/test/tsan/
H A Dfork_multithreaded.cc9 #include <sys/wait.h>
21 while (wait(0) < 0) {}
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_client.cc70 DWORD wait = ::SignalObjectAndWait(channel[num].ping_event, local
73 if (WAIT_TIMEOUT == wait) {
78 wait = ::WaitForSingleObject(control_->server_alive, 0);
79 if (WAIT_TIMEOUT == wait) {
80 // Server seems still alive. We already signaled so here we just wait.
81 wait = ::WaitForSingleObject(channel[num].pong_event, kIPCWaitTimeOut1);
82 if (WAIT_OBJECT_0 == wait) {
85 } else if (WAIT_TIMEOUT == wait) {
98 } else if (WAIT_OBJECT_0 != wait) {
133 DWORD wait local
[all...]
H A Dwin2k_threadpool.cc18 // create a wait for a kernel object, with no timeout
38 HANDLE wait = it->wait; local
40 success &= (::UnregisterWaitEx(wait, INVALID_HANDLE_VALUE) != 0);
54 // Here we used to unregister all the pool wait handles. Now, following the
/external/chromium_org/base/process/
H A Dkill.h48 // entry structure, giving it the specified exit code. If |wait| is true, wait
51 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
62 bool wait);
77 // Send a kill signal to the process and then wait for the process to exit
83 // because the kernel is still cleaning it up, this will wait for the process
118 base::TimeDelta wait,
125 base::TimeDelta wait);
134 base::TimeDelta wait,
156 // wait fo
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DJavascriptEventObserver.java14 * 2. Using waitForEnvent() to wait javascript event.
38 mEvent.wait(time);
53 mEvent.wait();

Completed in 1572 milliseconds

1234567891011>>