HomeSort by relevance Sort by last modified time
    Searched full:wait (Results 26 - 50 of 2481) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
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-5/arch-arm/usr/include/linux/
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-5/arch-x86/usr/include/linux/
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-8/arch-arm/usr/include/linux/
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-8/arch-x86/usr/include/linux/
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; })
  /external/kernel-headers/original/linux/
wait.h 11 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */
12 #define __WALL 0x40000000 /* Wait on all children, regardless of type */
13 #define __WCLONE 0x80000000 /* Wait only on non-SIGCHLD children */
29 typedef int (*wait_queue_func_t)(wait_queue_t *wait, unsigned mode, int sync, void *key);
30 int default_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key);
47 wait_queue_t wait; member in struct:wait_bit_queue
103 * Used to distinguish between sync and async io wait context:
104 * sync i/o typically specifies a NULL wait queue entry or a wait
106 * aio specifies a wait queue entry with an async notificatio
    [all...]
kmod.h 40 struct key *session_keyring, int wait);
43 call_usermodehelper(char *path, char **argv, char **envp, int wait)
45 return call_usermodehelper_keys(path, argv, envp, NULL, wait);
  /dalvik/dx/src/junit/textui/
TestRunner.java 12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) {
121 pause(wait);
125 protected void pause(boolean wait) {
126 if (!wait) return;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class")
    [all...]
  /dalvik/libcore/luni/src/test/java/junit/textui/
TestRunner.java 12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) {
121 pause(wait);
125 protected void pause(boolean wait) {
126 if (!wait) return;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class")
    [all...]
  /frameworks/base/test-runner/src/junit/textui/
TestRunner.java 12 * java junit.textui.TestRunner [-wait] TestCaseClass
19 * When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) {
121 pause(wait);
125 protected void pause(boolean wait) {
126 if (!wait) return;
154 boolean wait= false;
157 if (args[i].equals("-wait"))
158 wait= true;
168 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class")
    [all...]
  /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);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 224 obj1.wait();// Wait for ever.
252 // Wait up to readyWaitSeconds for all threads to be waiting on
255 obj1.wait(1000, 0);
269 obj1.wait(200, 0);
308 obj1.wait();// Wait for ever.
337 // Wait up to readyWaitSeconds for all threads to be waiting on
340 obj1.wait(1000, 0);
354 obj1.wait(5000, 0)
    [all...]
  /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 is at 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);
  /external/junit/src/junit/textui/
TestRunner.java 17 * java junit.textui.TestRunner [-wait] TestCaseClass
24 * When the wait command line argument is given TestRunner
117 public TestResult doRun(Test suite, boolean wait) {
126 pause(wait);
130 protected void pause(boolean wait) {
131 if (!wait) return;
160 boolean wait= false;
163 if (args[i].equals("-wait"))
164 wait= true;
179 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class")
    [all...]
  /cts/tests/src/android/content/cts/
HighPriorityBroadcastReceiver.java 30 wait(); method
33 throw new RuntimeException("Got interrupted during wait()", e);
  /external/clearsilver/man/man3/
filter_wait.3 26 pid -> the process identifier to wait for
28 options -> the options to pass to waitpid (see wait(2))
  /system/extras/tests/bionic/libc/other/
test_system.c 3 #include <sys/wait.h>
  /dalvik/tests/053-wait-some/src/
Main.java 4 * Exercise Object.wait(), comparing results against wall clock time.
23 sleepy.wait(-500);
36 sleepy.wait(delay);
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
Object.java 45 * The {@link #wait()} and {@link #notify()} methods provide a foundation for
183 * calling one of the {@code wait()} methods) to be woken up. If more than
202 * @see #wait()
203 * @see #wait(long)
204 * @see #wait(long,int)
212 * of calling one of the {@code wait()} methods) to be woken up. The threads
232 * @see #wait()
233 * @see #wait(long)
234 * @see #wait(long,int)
259 * Causes the calling thread to wait until another thread calls the {@cod
287 public final void wait() throws InterruptedException { method in class:Object
325 public final void wait(long millis) throws InterruptedException { method in class:Object
326 wait(millis, 0); method
367 public final native void wait(long millis, int nanos) throws InterruptedException; method in class:Object
    [all...]
  /development/host/windows/usb/api/
adb_legacy_io_completion.cpp 41 bool wait) {
55 wait) ? true :
59 // that GetOverlappedResult with wait set to true returns "prematurely",
64 if (wait && ret && (0 == transfer) && (0 != expected_transfer_size_) &&
71 wait) ? true :
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 49 bool wait) {
64 wait ? TRUE : FALSE) ? true : false;
67 // that GetOverlappedResult with wait set to true returns "prematurely",
72 if (wait && ret && (0 == transfer) && (0 != expected_transfer_size_) &&
80 wait ? TRUE : FALSE) ? true : false;

Completed in 348 milliseconds

12 3 4 5 6 7 8 91011>>