HomeSort by relevance Sort by last modified time
    Searched defs:wait (Results 1 - 25 of 213) sorted by null

1 2 3 4 5 6 7 8 9

  /bionic/libc/bionic/
wait.cpp 29 #include <sys/wait.h>
34 pid_t wait(int* status) { function
  /external/chromium_org/android_webview/browser/
scoped_allow_wait_for_legacy_web_view_api.h 17 base::ThreadRestrictions::ScopedAllowWait wait; member in class:ScopedAllowWaitForLegacyWebViewApi
  /external/chromium_org/third_party/skia/dm/
DMTaskRunner.cpp 9 void TaskRunner::wait() { function in class:DM::TaskRunner
14 fCpuWork.wait();
  /cts/tests/tests/content/src/android/content/cts/
HighPriorityBroadcastReceiver.java 30 wait(); method
33 throw new RuntimeException("Got interrupted during wait()", e);
  /development/ndk/platforms/android-3/arch-arm/include/asm/
semaphore.h 17 #include <linux/wait.h>
26 wait_queue_head_t wait; member in struct:semaphore
29 #define __SEMAPHORE_INIT(name, cnt) { .count = ATOMIC_INIT(cnt), .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), }
  /development/ndk/platforms/android-3/include/linux/
completion.h 15 #include <linux/wait.h>
19 wait_queue_head_t wait; member in struct:completion
22 #define COMPLETION_INITIALIZER(work) { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
  /development/ndk/sources/android/libportable/arch-mips/
waitpid.c 23 #include <sys/wait.h>
41 * The interpretation of status is documented in the wait(2) manual page
42 * and the implementation is in bionic/libc/include/sys/wait.h
76 pid_t WRAP(wait)(int *status) function
83 rv = REAL(wait)(status);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 30 /**A very simple barrier wait. Once a thread has requested a
31 * wait on the barrier with waitForRelease, it cannot fool the
33 * the thread is blocked on the wait().
55 wait(); method
  /external/chromium_org/sandbox/win/src/
win2k_threadpool.h 38 // 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.
sharedmem_ipc_client.cc 64 // Wait for the server to service this IPC call. After kIPCWaitTimeOut1
70 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 = ::WaitForSingleObject(control_->server_alive, local
    [all...]
sync_policy_test.cc 61 DWORD wait = ::WaitForSingleObject(event_create.Get(), 0); local
62 if (initial_state && WAIT_OBJECT_0 != wait)
65 if (!initial_state && WAIT_TIMEOUT != wait)
win2k_threadpool.cc 18 // 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/third_party/skia/src/utils/
SkCondVar.cpp 46 void SkCondVar::wait() { function in class:SkCondVar
  /external/chromium_org/third_party/webrtc/tools/rtcbot/
test.js 54 // Utility method to wait for multiple callbacks to be executed.
57 wait: function (functions, doneCallback) {
  /cts/suite/audio_quality/lib/src/
Semaphore.cpp 37 bool Semaphore::wait() function in class:Semaphore
  /dalvik/dx/tests/089-dex-define-object/
Object.java 41 public final void wait() { method in class:Object
42 wait(0, 0);
45 public final void wait(long time) { method in class:Object
46 wait(time, 0); method
49 public final native void wait(long time, int frac); method in class:Object
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
Handle.java 19 * 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/libaddressinput/src/java/src/com/android/i18n/addressinput/
NotifyingListener.java 20 * A helper class to let the calling thread wait until loading has finished.
50 mSleeper.wait();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
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);
  /external/junit/src/junit/extensions/
ActiveTestSuite.java 59 wait(); method
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 74 ** 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: fail get time; errno=0x%X", errno)
    [all...]
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/llvmpipe/
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);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
CurrentContendedMonitorDebuggee.java 38 * invokes <code>wait()</code>.
56 waitForStart.wait();
98 CurrentContendedMonitorDebuggee.waitForStart.wait();

Completed in 1290 milliseconds

1 2 3 4 5 6 7 8 9