HomeSort by relevance Sort by last modified time
    Searched refs:wait_result (Results 1 - 3 of 3) sorted by null

  /external/valgrind/main/memcheck/tests/
file_locking.c 114 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/
subprocess.cc 168 DWORD wait_result = local
172 if (wait_result >= WAIT_OBJECT_0 &&
173 wait_result < WAIT_OBJECT_0 + handle_count) {
174 signaled_handle = handles[wait_result - WAIT_OBJECT_0];
175 } else if (wait_result == WAIT_FAILED) {
180 << wait_result;
222 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE); local
224 if (wait_result == WAIT_FAILED) {
227 } else if (wait_result != WAIT_OBJECT_0) {
229 << wait_result;
    [all...]
  /external/chromium/base/
process_util_win.cc 434 DWORD wait_result = WaitForSingleObject(handle, 0); local
435 if (wait_result == WAIT_TIMEOUT) {
437 *exit_code = wait_result;
441 DCHECK_EQ(WAIT_OBJECT_0, wait_result);
530 DWORD wait_result = WaitForSingleObject(process, remaining_wait); local
532 result = result && (wait_result == WAIT_OBJECT_0);

Completed in 1600 milliseconds