/external/openssh/openbsd-compat/ |
H A D | bsd-nextstep.h | 41 /* Swap out NeXT's BSD wait() for a more POSIX complient one */ 43 #define wait(a) posix_wait(a) macro
|
H A D | bsd-nextstep.c | 29 #include <sys/wait.h> 35 union wait statusp; 38 #undef wait /* Use NeXT's wait() function */ macro 39 wait_pid = wait(&statusp);
|
/external/llvm/lib/Support/ |
H A D | ThreadPool.cpp | 28 // Create ThreadCount threads that will loop forever, wait on QueueCondition 38 QueueCondition.wait(LockGuard, 46 // in order for wait() to properly detect that even if the queue is 63 // Adjust `ActiveThreads`, in case someone waits on ThreadPool::wait() 68 // Notify task completion, in case someone waits on ThreadPool::wait() 75 void ThreadPool::wait() { function in class:ThreadPool 78 CompletionCondition.wait(LockGuard, 123 void ThreadPool::wait() { 140 // Wrap the future so that both ThreadPool::wait() can operate and the 152 wait(); [all...] |
/external/skia/include/private/ |
H A D | SkSemaphore.h | 34 void wait() { function in struct:SkBaseSemaphore 36 // resources left, so the thread needs to wait. 67 * - Increment is spelled 'signal()'; decrement is spelled 'wait()'. 68 * - If a call to wait() decrements the counter to <= 0, 78 void wait();
|
/external/autotest/client/tests/kvm/deps/ |
H A D | whql_submission_15.cs | 68 // Set the machine's status to 'Reset' and optionally wait for it to become ready 69 static void ResetMachine(IResourcePool rootPool, string machineName, bool wait) argument 87 if (wait)
|
/external/autotest/server/cros/ |
H A D | stress.py | 39 Optionally takes a wait condition before the stressor loop. Returns 42 @param start_condition: the new thread will wait until this optional 44 @param start_timeout_secs: how long to wait for |start_condition| to 45 become True, or None to wait forever. 147 @param start_condition: the new thread will wait to until this optional 149 @param start_timeout_secs: how long to wait for |start_condition| to 150 become True, or None to wait forever. 161 @param timeout: maximum time to wait for a single run of the stressor to 174 calling thread can use wait() to block until the loop completes. If the 175 stressor thread terminates with an exception, wait() wil 202 def wait(self, timeout=None): member in class:CountedStressor [all...] |
/external/fio/lib/ |
H A D | tp.h | 12 int wait; member in struct:tp_work
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
H A D | CondVar.cpp | 75 ** Function: wait 77 ** Description: Block the caller and wait for a condition. 82 void CondVar::wait (Mutex& mutex) function in class:CondVar 87 ALOGE ("CondVar::wait: fail wait; error=0x%X", res); 94 ** Function: wait 96 ** Description: Block the caller and wait for a condition. 99 ** Returns: True if wait is successful; false if timeout occurs. 102 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar 109 ALOGE ("CondVar::wait [all...] |
H A D | SyncEvent.h | 63 ** 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/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_query.c | 67 boolean wait, 65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_scene_queue.c | 90 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait) argument 100 wait );
|
H A D | lp_query.c | 87 boolean wait, 104 if (!wait) 161 boolean b, wait; local 166 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT || 169 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result); 85 llvmpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | r600_query.c | 62 boolean wait, union pipe_query_result *vresult) 67 return r600_context_query_result(rctx, rquery, wait, vresult); 60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
|
/external/parameter-framework/asio/include/asio/detail/ |
H A D | posix_event.hpp | 96 void wait(Lock& lock) function in class:asio::detail::posix_event
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
H A D | posix_event.hpp | 96 void wait(Lock& lock) function in class:asio::detail::posix_event
|
/external/skia/src/core/ |
H A D | SkSemaphore.cpp | 21 void wait() { semaphore_wait(fSemaphore); } function in struct:SkBaseSemaphore::OSSemaphore 38 void wait() { WaitForSingleObject(fSemaphore, INFINITE/*timeout in ms*/); } function in struct:SkBaseSemaphore::OSSemaphore 51 void wait() { function in struct:SkBaseSemaphore::OSSemaphore 85 void SkBaseSemaphore::osWait() { semaphore(this)->wait(); } 97 void SkSemaphore::wait() { fBaseSemaphore.wait(); }
|
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
H A D | http.py | 123 def wait(self, retries=30): member in class:StopableWSGIServer
|
/external/webrtc/webrtc/base/ |
H A D | signalthread.cc | 54 void SignalThread::Destroy(bool wait) { argument 65 if (wait) {
|
/external/autotest/server/ |
H A D | subcommand.py | 238 def wait(self): member in class:subcommand 250 return self.wait() 252 _, result = retry.timeout(self.wait, timeout_sec=timeout) 260 result = self.wait()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
H A D | vtune_profiler_unittest.py | 24 def wait(self): member in class:MockPopen
|
/external/iw/ |
H A D | connect.c | 83 bool wait = false; local 92 wait = true; 116 if (!wait) 146 "With -w, wait for the connect to finish or fail.");
|
/external/kernel-headers/original/uapi/linux/ |
H A D | dlm_plock.h | 32 __u8 wait; member in struct:dlm_plock_info
|
/external/lldb/test/pexpect-2.4/examples/ |
H A D | chess2.py | 70 def wait (self, color): member in class:Chess 118 white.wait ('Black') 123 black.wait ('White')
|
/external/mesa3d/src/gallium/drivers/r300/ |
H A D | r300_query.c | 137 boolean wait, 146 if (wait) { 157 (!wait ? PIPE_TRANSFER_DONTBLOCK : 0)); 185 boolean wait; local 190 wait = mode == PIPE_RENDER_COND_WAIT || 193 if (r300_get_query_result(pipe, query, wait, &result)) { 135 r300_get_query_result(struct pipe_context* pipe, struct pipe_query* query, boolean wait, union pipe_query_result *vresult) argument
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_query.c | 159 boolean wait, 204 boolean b, wait; local 211 wait = (sp->render_cond_mode == PIPE_RENDER_COND_WAIT || 214 b = pipe->get_query_result(pipe, sp->render_cond_query, wait, 157 softpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
|