/development/ndk/platforms/android-3/arch-arm/include/asm/ |
H A D | 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), }
|
/development/ndk/platforms/android-3/include/linux/ |
H A D | 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) }
|
H A D | mempool.h | 15 #include <linux/wait.h> 31 wait_queue_head_t wait; member in struct:mempool_s
|
H A D | blkdev.h | 22 #include <linux/wait.h> 114 wait_queue_head_t wait[2]; member in struct:request_list
|
/development/host/windows/usb/api/ |
H A D | 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 :
39 GetOvelappedIoResult(LPOVERLAPPED ovl_data, ULONG* bytes_transferred, bool wait) argument
|
H A D | adb_api.cpp | 486 bool wait) {
494 adb_object->GetOvelappedIoResult(overlapped, bytes_transferred, wait);
483 AdbGetOvelappedIoResult(ADBAPIHANDLE adb_io_completion, LPOVERLAPPED overlapped, unsigned long* bytes_transferred, bool wait) argument
|
/development/host/windows/usb/winusb/ |
H A D | 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;
47 GetOvelappedIoResult(LPOVERLAPPED ovl_data, ULONG* bytes_transferred, bool wait) argument
|
/development/tools/emulator/opengl/shared/OpenglOsUtils/ |
H A D | osThreadUnix.cpp | 47 Thread::wait(int *exitStatus) function in class:osUtils::Thread
|
H A D | osThreadWin.cpp | 46 Thread::wait(int *exitStatus) function in class:osUtils::Thread
|
H A D | osProcessUnix.cpp | 19 #include <sys/wait.h> 150 childProcess::wait(int *exitStatus) function in class:osUtils::childProcess 186 int KillProcess(int pid, bool wait) argument 196 if (wait) {
|
H A D | 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) argument 138 if (wait) {
|
/development/tools/hosttestlib/src/com/android/hosttest/ |
H A D | DeviceTestRunner.java | 120 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);
|