Searched refs:wait (Results 1 - 25 of 40) sorted by relevance

12

/development/ndk/platforms/android-3/include/linux/
H A Dcompletion.h15 #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) }
H A Dmempool.h15 #include <linux/wait.h>
31 wait_queue_head_t wait; member in struct:mempool_s
H A Dsmp.h17 #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; })
H A Dnet.h15 #include <linux/wait.h>
H A Dconsole_struct.h12 #include <linux/wait.h>
H A Drelay.h17 #include <linux/wait.h>
/development/ndk/platforms/android-3/arch-arm/include/asm/
H A Dsemaphore.h17 #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), }
/development/host/windows/usb/api/
H A Dadb_legacy_io_completion.cpp41 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 :
39 GetOvelappedIoResult(LPOVERLAPPED ovl_data, ULONG* bytes_transferred, bool wait) argument
H A Dadb_io_completion.h74 @param[in] wait If this parameter is true, the method does not return
85 bool wait) = 0;
H A Dadb_legacy_io_completion.h77 @param[in] wait If this parameter is true, the method does not return
88 bool wait);
/development/host/windows/usb/winusb/
H A Dadb_winusb_io_completion.cpp49 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;
47 GetOvelappedIoResult(LPOVERLAPPED ovl_data, ULONG* bytes_transferred, bool wait) argument
H A Dadb_winusb_io_completion.h98 @param[in] wait If this parameter is true, the method does not return
109 bool wait);
/development/ndk/platforms/android-3/include/sys/
H A Dwait.h34 #include <linux/wait.h>
47 extern pid_t wait(int *);
/development/ndk/platforms/android-9/include/sys/
H A Dwait.h34 #include <linux/wait.h>
48 extern pid_t wait(int *);
/development/tools/hosttestlib/src/com/android/hosttest/
H A DDeviceTestRunner.java120 public TestResult doRun(Test test, boolean wait) { argument
129 return super.doRun(test, wait);
137 protected TestResult runSingleMethod(String testCase, String method, boolean wait) argument
141 return doRun(test, wait);
H A DDeviceConnector.java29 * The maximum time to wait for a device to be connected.
101 wait(waitTime);
/development/ndk/sources/android/libportable/arch-mips/
H A Dwaitpid.c23 #include <sys/wait.h>
41 * The interpretation of status is documented in the wait(2) manual page
42 * and the implementation is in bionic/libc/include/sys/wait.h
76 pid_t WRAP(wait)(int *status) function
83 rv = REAL(wait)(status);
/development/samples/USB/AdbTest/src/com/android/adb/
H A DAdbSocket.java47 wait();
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentRetainInstance.java126 wait();
143 wait(50);
H A DAlarmService_Service.java79 mBinder.wait(endTime - System.currentTimeMillis());
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentRetainInstanceSupport.java127 wait();
144 wait(50);
/development/ndk/platforms/android-3/include/linux/sunrpc/
H A Dsvc.h19 #include <linux/wait.h>
/development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
H A DGpsLocationTest.java63 this.wait(TIMEOUT);
/development/samples/Alarm/src/com/example/android/newalarm/
H A DAlarmService.java86 // Sets the wait time to 15 seconds, simulating a 15-second background task.
89 // Puts the wait in a while loop to ensure that it actually waited 15 seconds.
90 // This covers the situation where an interrupt might have overridden the wait.
96 // If an interrupt occurs, the wait is recalculated to ensure a net
97 // wait of 15 seconds.
98 mBinder.wait(waitTime - System.currentTimeMillis());
151 * Stops the service in response to the stopSelf() issued when the wait is over. Other
/development/testrunner/
H A Drun_command.py43 timeout_time: time in seconds to wait for command to run before aborting.
70 timeout_time: time in seconds to wait for command to run before aborting.
169 subproc.wait()

Completed in 1107 milliseconds

12