Searched defs:wait_result (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
H A Dqueue_user_work_item.cc47 unsigned wait_result = WaitForSingleObject(done, 10 * 1000); local
48 if (wait_result == WAIT_ABANDONED)
50 if (wait_result != WAIT_OBJECT_0) {
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); local
31 if (wait_result < 0) {
35 if (wait_result == clone_pid && WIFEXITED(status)) {
/external/valgrind/memcheck/tests/
H A Dfile_locking.c114 int wait_result; local
116 wait_result = wait4(fork_result, &child_status, 0, 0);
117 assert(wait_result >= 0);
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc173 DWORD wait_result = local
177 if (wait_result >= WAIT_OBJECT_0 &&
178 wait_result < WAIT_OBJECT_0 + handle_count) {
179 signaled_handle = handles[wait_result - WAIT_OBJECT_0];
180 } else if (wait_result == WAIT_FAILED) {
185 << wait_result;
227 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE); local
229 if (wait_result == WAIT_FAILED) {
232 } else if (wait_result != WAIT_OBJECT_0) {
234 << wait_result;
[all...]
/external/libmojo/mojo/message_pump/
H A Dmessage_pump_mojo.cc247 const MojoResult wait_result = Wait( local
249 if (wait_result == MOJO_RESULT_OK) {
253 } else if (wait_result == MOJO_RESULT_DEADLINE_EXCEEDED) {
257 base::debug::Alias(&wait_result);
/external/kernel-headers/original/uapi/linux/
H A Dkfd_ioctl.h232 uint32_t wait_result; /* from KFD */ member in struct:kfd_ioctl_wait_events_args

Completed in 210 milliseconds