HomeSort by relevance Sort by last modified time
    Searched defs:wait (Results 101 - 125 of 581) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/sandbox/win/src/
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/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/chromium_org/third_party/skia/src/utils/
SkThreadPool.cpp 43 this->wait();
47 void SkThreadPool::wait() { function in class:SkThreadPool
53 // Wait for all threads to stop.
66 // We have to be holding the lock to read the queue and to call wait.
80 // wait yields the lock while waiting, but will have it again when awoken.
81 pool->fReady.wait();
83 // We've got the lock back here, no matter if we ran wait or not.
  /external/junit/src/junit/extensions/
ActiveTestSuite.java 59 wait(); method
  /external/kernel-headers/original/asm-arm/
semaphore.h 9 #include <linux/wait.h>
18 wait_queue_head_t wait; member in struct:semaphore
24 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), \
37 init_waitqueue_head(&sem->wait);
  /external/kernel-headers/original/asm-x86/
semaphore_32.h 41 #include <linux/wait.h>
47 wait_queue_head_t wait; member in struct:semaphore
55 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \
73 init_waitqueue_head(&sem->wait);
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 71 ** Function: wait
73 ** Description: Block the caller and wait for a condition.
78 void CondVar::wait (Mutex& mutex) function in class:CondVar
83 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
90 ** Function: wait
92 ** Description: Block the caller and wait for a condition.
95 ** Returns: True if wait is successful; false if timeout occurs.
98 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar
105 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/openssh/openbsd-compat/
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/skia/src/utils/
SkThreadPool.cpp 43 this->wait();
47 void SkThreadPool::wait() { function in class:SkThreadPool
53 // Wait for all threads to stop.
66 // We have to be holding the lock to read the queue and to call wait.
80 // wait yields the lock while waiting, but will have it again when awoken.
81 pool->fReady.wait();
83 // We've got the lock back here, no matter if we ran wait or not.
  /frameworks/base/core/java/android/os/
ConditionVariable.java 23 * This differs from the built-in java.lang.Object wait() and notify()
24 * in that this class contains the condition to wait on itself. That means
29 * This class uses itself as the object to wait on, so if you wait()
97 this.wait();
112 * @param timeout the minimum time to wait in milliseconds.
119 // Object.wait(0) means wait forever, to mimic this, we just
128 this.wait(end-now);
  /frameworks/base/libs/hwui/
Fence.h 28 * commands stream. The caller can then wait for the fence to be signaled
29 * by calling the wait method.
35 * Default timeout in nano-seconds for wait()
69 bool wait(EGLTimeKHR timeout = kDefaultTimeout) { function in class:android::uirenderer::Fence
73 ALOGW("Failed to wait for the fence %#x", eglGetError());
87 * to automatically wait for a series of OpenGL commands to be
101 mFence.wait(mTimeout);
  /frameworks/base/libs/hwui/thread/
Barrier.h 41 void wait() const { function in class:android::uirenderer::Barrier
44 mCondition.wait(mLock);
Signal.h 38 void wait() { function in class:android::uirenderer::Signal
41 mCondition.wait(mLock);
  /frameworks/base/services/java/com/android/server/am/
AppErrorResult.java 32 wait(); method
  /frameworks/native/services/surfaceflinger/
Barrier.h 40 void wait() const { function in class:android::Barrier
43 cv.wait(lock);
  /libcore/libdvm/src/main/java/java/lang/
Object.java 263 * calling one of the {@code wait()} methods) to be woken up. If more than
282 * @see #wait()
283 * @see #wait(long)
284 * @see #wait(long,int)
291 * of calling one of the {@code wait()} methods) to be woken up. The threads
311 * @see #wait()
312 * @see #wait(long)
313 * @see #wait(long,int)
336 * Causes the calling thread to wait until another thread calls the {@code
342 * prematurely stop waiting, so {@code wait} should be called in a loop t
363 public final void wait() throws InterruptedException { method in class:Object
400 public final void wait(long millis) throws InterruptedException { method in class:Object
401 wait(millis, 0); method
441 public final native void wait(long millis, int nanos) throws InterruptedException; method in class:Object
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
condition_variable.cpp 35 condition_variable::wait(unique_lock<mutex>& lk) function in class:condition_variable
39 "condition_variable::wait: mutex not locked");
42 __throw_system_error(ec, "condition_variable wait failed");
52 "condition_variable::timed wait: mutex not locked");
  /packages/apps/Nfc/nci/jni/
SyncEvent.h 59 ** Function: wait
61 ** Description: Block the thread and wait for the event to occur.
66 void wait () function in class:SyncEvent
68 mCondVar.wait (mMutex);
74 ** Function: wait
76 ** Description: Block the thread and wait for the event to occur.
79 ** Returns: True if wait is successful; false if timeout occurs.
82 bool wait (long millisec) function in class:SyncEvent
84 bool retVal = mCondVar.wait (mMutex, millisec);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
mempool.h 15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s

Completed in 1047 milliseconds

1 2 3 45 6 7 8 91011>>