HomeSort by relevance Sort by last modified time
    Searched full:wait (Results 251 - 275 of 8429) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/gdbserver_tests/
mssnapshot.stdinB.gdb 2 target remote | ./vgdb --wait=60 --vgdb-prefix=./vgdb-prefix-mssnapshot
mcinvokeRU.vgtest 11 argsB: 10 --vgdb-prefix=./vgdb-prefix-mcinvokeRU --max-invoke-ms=0 --wait=60 -c v.wait 0
12 # if the --wait is not enough, the test will fail or block.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
waitflags.h 21 # error "Never include <bits/waitflags.h> directly; use <sys/wait.h> instead."
35 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads
37 #define __WALL 0x40000000 /* Wait for any child. */
38 #define __WCLONE 0x80000000 /* Wait for cloned process. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
waitflags.h 21 # error "Never include <bits/waitflags.h> directly; use <sys/wait.h> instead."
35 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads
37 #define __WALL 0x40000000 /* Wait for any child. */
38 #define __WCLONE 0x80000000 /* Wait for cloned process. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
waitflags.h 21 # error "Never include <bits/waitflags.h> directly; use <sys/wait.h> instead."
35 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads
37 #define __WALL 0x40000000 /* Wait for any child. */
38 #define __WCLONE 0x80000000 /* Wait for cloned process. */
  /system/extras/tests/bionic/libc/other/
test_system.c 3 #include <sys/wait.h>
  /art/runtime/
barrier.h 34 // Wait on the barrier, decrement the count.
35 void Wait(Thread* self);
41 // Increment the count by delta, wait on condition if count is non zero.
  /bionic/libc/kernel/common/linux/
completion.h 21 #include <linux/wait.h>
25 wait_queue_head_t wait; member in struct:completion
27 #define COMPLETION_INITIALIZER(work) { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
  /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);
  /device/asus/grouper/
fstab.grouper 7 /dev/block/platform/sdhci-tegra.3/by-name/APP /system ext4 ro wait
8 /dev/block/platform/sdhci-tegra.3/by-name/CAC /cache ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait
9 /dev/block/platform/sdhci-tegra.3/by-name/UDA /data ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait,encryptable=/dev/block/platform/sdhci-tegra.3/by-name/MDA
  /device/asus/tilapia/
fstab.grouper 7 /dev/block/platform/sdhci-tegra.3/by-name/APP /system ext4 ro wait
8 /dev/block/platform/sdhci-tegra.3/by-name/CAC /cache ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait
9 /dev/block/platform/sdhci-tegra.3/by-name/UDA /data ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait,encryptable=/dev/block/platform/sdhci-tegra.3/by-name/MDA
  /external/bison/m4/
sys_wait_h.m4 11 dnl <sys/wait.h> is always overridden, because of GNULIB_POSIXCHECK.
12 gl_CHECK_NEXT_HEADERS([sys/wait.h])
19 gl_WARN_ON_USE_PREPARE([[#include <sys/wait.h>]],
  /external/chromium_org/content/browser/device_orientation/
device_motion_provider_unittest.cc 52 start_fetching_data_.Wait();
56 stop_fetching_data_.Wait();
60 fetched_data_.Wait();
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
shared_queue.h 16 // Specifies whether we want to wait for the queue.
22 // Indicates if we got an item, did not wait, or if the queue was cancelled.
100 // kDidNotWait if |wait| was kDontWait and the queue was empty,
102 // If |wait| is kWait, GetItem will wait to return until the queue
104 QueueGetResult GetItem(T* item_ptr, QueueWaitingFlag wait) {
106 // Use a while loop to get an item. If the user does not want to wait,
108 // If the user does want to wait, we will wait for pthread_cond_wait,
113 // If user doesn't want to wait, return..
    [all...]
  /external/chromium_org/sandbox/win/src/
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...]
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
ptrace.cc 9 #include <sys/wait.h>
19 wait(NULL);
49 wait(NULL);
  /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);
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.h 42 ///Wait operation
43 status_t Wait();
51 ///Wait operation with a timeout
  /external/chromium_org/chrome/browser/ui/login/
login_prompt_browsertest.cc 172 // LOAD_STOP observer is special since we want to be able to wait for
269 load_stop_waiter.Wait();
291 auth_needed_waiter.Wait();
302 auth_supplied_waiter.Wait();
307 auth_needed_waiter.Wait();
314 auth_supplied_waiter.Wait();
339 auth_needed_waiter.Wait();
350 auth_supplied_waiter.Wait();
355 auth_needed_waiter.Wait();
365 auth_supplied_waiter.Wait();
    [all...]
  /external/chromium/base/synchronization/
condition_variable.h 7 // several threads wait for an event, as is common with a thread pool managed
23 // while (!work_to_be_done()) Wait(...);
27 // if (!work_to_be_done()) Wait(...); // Don't do this.
36 // called Wait(). This results in POOR performance. A much better
37 // approach to getting a lot of threads out of Wait() is to have each
38 // thread (upon exiting Wait()) call Signal() to free up another
39 // Wait'ing thread. Look at condition_variable_unittest.cc for
49 // all, while others allow the wait to be effectively turned off (for
56 // assures that the thread that most recently began to Wait() is selected by
58 // thread that has Wait()ed the longest is selected. The default polic
    [all...]
  /art/runtime/native/
java_lang_Object.cc 49 o->Wait(soa.Self());
55 o->Wait(soa.Self(), ms, ns);
62 NATIVE_METHOD(Object, wait, "()V", wait),
63 NATIVE_METHOD(Object, wait, "(JI)V", waitJI),
  /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;
  /device/generic/goldfish/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 53 // keep the process handle for wait/trywait operations, will
68 childProcess::wait(int *exitStatus) function in class:osUtils::childProcess
124 int KillProcess(int pid, bool wait)
138 if (wait) {
140 // Wait for it to be terminated
  /external/chromium_org/base/android/
activity_status_unittest.cc 57 // Wait for its completion.
58 event_.Wait();
60 // Change state, then wait for the thread to modify state.
62 event_.Wait();
67 event_.Wait();

Completed in 1450 milliseconds

<<11121314151617181920>>