HomeSort by relevance Sort by last modified time
    Searched refs:wait (Results 126 - 150 of 1438) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/8/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
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; })
  /prebuilts/ndk/8/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; })
  /prebuilts/ndk/8/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; })
  /prebuilts/ndk/8/platforms/android-9/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; })
  /prebuilts/ndk/8/platforms/android-9/arch-mips/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; })
  /prebuilts/ndk/8/platforms/android-9/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/
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);
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);
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...]
  /cts/suite/audio_quality/lib/include/
Semaphore.h 37 bool wait();
  /external/bison/lib/
waitpid.c 0 /* Wait for process state change.
20 #include <sys/wait.h>
  /external/skia/include/utils/
SkCountdown.h 29 void wait();
  /frameworks/base/services/java/com/android/server/am/
AppErrorResult.java 33 wait(); method
  /frameworks/rs/
rsSignal.h 37 bool wait(uint64_t timeout = 0);
  /device/generic/goldfish/opengl/shared/OpenglOsUtils/
osProcess.h 41 bool wait(int *exitStatus);
57 int KillProcess(int pid, bool wait);
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcess.h 41 bool wait(int *exitStatus);
57 int KillProcess(int pid, bool wait);
  /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);
  /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);

Completed in 520 milliseconds

1 2 3 4 56 7 8 91011>>