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

/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/main/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/chromium_org/ipc/mojo/
H A Dipc_message_pipe_reader.cc66 void MessagePipeReader::PipeIsReady(MojoResult wait_result) { argument
69 if (wait_result != MOJO_RESULT_OK) {
70 if (wait_result != MOJO_RESULT_ABORTED) {
73 DLOG_IF(WARNING, wait_result != MOJO_RESULT_FAILED_PRECONDITION)
75 << wait_result;
76 OnPipeError(wait_result);
/external/chromium_org/mojo/system/
H A Dmessage_pipe_test_utils.cc30 MojoResult wait_result = waiter.Wait(MOJO_DEADLINE_INDEFINITE, nullptr); local
32 return wait_result;
/external/chromium_org/base/process/
H A Dkill_win.cc144 DWORD wait_result = WaitForSingleObject(handle, 0); local
145 if (wait_result == WAIT_TIMEOUT) {
147 *exit_code = wait_result;
151 if (wait_result == WAIT_FAILED) {
154 DCHECK_EQ(WAIT_OBJECT_0, wait_result);
214 DWORD wait_result = WaitForSingleObject(process, remaining_wait); local
216 result &= (wait_result == WAIT_OBJECT_0);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc171 DWORD wait_result = local
175 if (wait_result >= WAIT_OBJECT_0 &&
176 wait_result < WAIT_OBJECT_0 + handle_count) {
177 signaled_handle = handles[wait_result - WAIT_OBJECT_0];
178 } else if (wait_result == WAIT_FAILED) {
183 << wait_result;
225 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE); local
227 if (wait_result == WAIT_FAILED) {
230 } else if (wait_result != WAIT_OBJECT_0) {
232 << wait_result;
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc168 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_org/base/
H A Dsync_socket_win.cc152 const int wait_result = WaitForMultipleObjects( local
157 if (wait_result != WAIT_OBJECT_0 + 0) {
169 if (wait_result == WAIT_OBJECT_0 + 1) {
177 DCHECK(wait_result == WAIT_OBJECT_0 + 0 || wait_result == WAIT_TIMEOUT);
/external/chromium_org/cloud_print/service/win/
H A Dchrome_launcher.cc228 DWORD wait_result = WAIT_TIMEOUT; local
229 while (wait_result == WAIT_TIMEOUT) {
231 wait_result = ::WaitForMultipleObjects(arraysize(handles), handles,
234 if (wait_result == WAIT_OBJECT_0) {
237 } else if (wait_result == WAIT_OBJECT_0 + 1) {
305 DWORD wait_result = ::WaitForSingleObject(chrome_handle.Get(), 500); local
308 if (wait_result == WAIT_OBJECT_0) {
312 if (wait_result != WAIT_TIMEOUT) {
/external/chromium_org/media/audio/win/
H A Daudio_low_latency_output_win.cc374 DWORD wait_result = WaitForMultipleObjects(arraysize(wait_array), local
379 switch (wait_result) {
H A Daudio_low_latency_input_win.cc389 DWORD wait_result = WaitForMultipleObjects(2, wait_array, FALSE, INFINITE); local
390 switch (wait_result) {
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_browsertest.cc244 bool wait_result = launched_listener.WaitUntilSatisfied(); local
245 EXPECT_TRUE(wait_result);
246 if (!wait_result)
/external/chromium_org/sandbox/win/src/
H A Dipc_unittest.cc383 DWORD wait_result = 0; local
384 wait_result = ::WaitForSingleObject(events->ping, INFINITE);
387 return wait_result;
489 DWORD wait_result = 0; local
490 wait_result = ::WaitForSingleObject(events->ping, INFINITE);
494 return wait_result;
500 DWORD wait_result = 0; local
501 wait_result = ::WaitForSingleObject(events->mutex, INFINITE);
503 return wait_result;

Completed in 1304 milliseconds