Searched defs:wait (Results 1 - 25 of 179) sorted by relevance

12345678

/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/chromium_org/third_party/skia/dm/
H A DDMTaskRunner.cpp9 void TaskRunner::wait() { function in class:DM::TaskRunner
14 fCpuWork.wait();
/external/skia/src/utils/
H A DSkCountdown.cpp26 void SkCountdown::wait() { function in class:SkCountdown
29 fReady.wait();
H A DSkCondVar.cpp46 void SkCondVar::wait() { function in class:SkCondVar
/external/chromium_org/sandbox/win/src/
H A Dwin2k_threadpool.h38 // Returns the total number of wait objects associated with
43 // record to keep track of a wait and its associated cookie.
46 HANDLE wait; member in struct:sandbox::Win2kThreadPool::PoolObject
48 // The list of pool wait objects.
51 // This lock protects the list of pool wait objects.
H A Dsync_policy_test.cc61 DWORD wait = ::WaitForSingleObject(event_create.Get(), 0); local
62 if (initial_state && WAIT_OBJECT_0 != wait)
65 if (!initial_state && WAIT_TIMEOUT != wait)
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
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...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkCondVar.cpp46 void SkCondVar::wait() { function in class:SkCondVar
/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/webrtc/tools/rtcbot/
H A Dtest.js54 // Utility method to wait for multiple callbacks to be executed.
57 wait: function (functions, doneCallback) {
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DHandle.java19 * likely the case with |wait()|, etc.), or fail with |MojoResult.INVALID_ARGUMENT| if they
26 * @see Core#wait(Handle, Core.HandleSignals, long)
28 public int wait(Core.HandleSignals signals, long deadline); method in interface:Handle
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_query.c67 boolean wait,
65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.c90 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait) argument
100 wait );
H A Dlp_query.c87 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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_query.c62 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/chromium_org/third_party/webrtc/base/
H A Dnethelpers.h42 virtual void Destroy(bool wait) { SignalThread::Destroy(wait); } argument
H A Dsignalthread.cc61 void SignalThread::Destroy(bool wait) { argument
72 if (wait) {
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.cpp74 ** Function: wait
76 ** Description: Block the caller and wait for a condition.
81 void CondVar::wait (Mutex& mutex) function in class:CondVar
86 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
93 ** Function: wait
95 ** Description: Block the caller and wait for a condition.
98 ** Returns: True if wait is successful; false if timeout occurs.
101 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar
108 ALOGE ("CondVar::wait
[all...]
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/mesa3d/src/gallium/drivers/i915/
H A Di915_query.c67 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 Dlp_scene_queue.c90 lp_scene_dequeue(struct lp_scene_queue *queue, boolean wait) argument
100 wait );
H A Dlp_query.c87 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 Dr600_query.c62 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/chromium_org/remoting/client/plugin/
H A Dpepper_address_resolver.cc58 void PepperAddressResolver::Destroy(bool wait) { argument

Completed in 439 milliseconds

12345678