/dalvik/tests/063-process-manager/ |
info.txt | 2 doesn't cause the system to busy-wait.
|
/external/webkit/WebCore/manual-tests/resources/ |
alert-and-go-back.html | 3 alert("Wait a moment and then dismiss this alert. If there is no crash, the test succeeded.");
|
/bionic/libc/kernel/common/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
|
smp.h | 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function()) 18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
|
/ndk/build/platforms/android-3/arch-arm/usr/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
|
smp.h | 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function()) 18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
|
/ndk/build/platforms/android-4/arch-arm/usr/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
|
/ndk/build/platforms/android-5/arch-arm/usr/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) }
|
/ndk/build/platforms/android-5/arch-x86/usr/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) }
|
/ndk/build/platforms/android-8/arch-arm/usr/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) }
|
/ndk/build/platforms/android-8/arch-x86/usr/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) }
|
/bionic/libc/kernel/arch-arm/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), }
|
/ndk/build/platforms/android-3/arch-arm/usr/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), }
|
/ndk/build/platforms/android-4/arch-arm/usr/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), }
|
/ndk/build/platforms/android-5/arch-arm/usr/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), }
|
/ndk/build/platforms/android-8/arch-arm/usr/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), }
|
/external/clearsilver/man/man3/ |
cWait.3 | 14 cWait - wait a condition variable signal. 25 cond - condition variable to wait on.
|
/external/v8/test/cctest/ |
test-lock.cc | 48 ok = sem->Wait(0); 50 ok = sem->Wait(100); 52 ok = sem->Wait(1000); 57 ok = sem->Wait(0); 59 ok = sem->Wait(100); 61 ok = sem->Wait(1000);
|
/frameworks/base/tests/CoreTests/android/core/ |
MonitorTest.java | 34 wait(1); 35 wait(10); 38 wait(0, 1); 39 wait(0, 999999); 40 wait(1, 1); 41 wait(1, 999999); 44 throw new RuntimeException("good Object.wait() interrupted", 48 "Object.wait() with good arguments", ex); 56 wait(-1); 59 throw new RuntimeException("bad Object.wait() interrupted", ex) [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleWait.java | 25 * Handle the "wait" chunk (WAIT). These are sent up when the client is 30 public static final int CHUNK_WAIT = ChunkHandler.type("WAIT"); 62 Log.d("ddm-wait", "handling " + ChunkHandler.name(type)); 73 * Handle a reply to our WAIT message. 80 Log.d("ddm-wait", "WAIT: reason=" + reason);
|
/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/kernel-headers/original/linux/ |
completion.h | 7 * Atomic wait-for-completion handler data structures. 11 #include <linux/wait.h> 15 wait_queue_head_t wait; member in struct:completion 19 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) } 42 init_waitqueue_head(&x->wait);
|