Lines Matching defs:wait_result
186 DWORD wait_result =
190 if (wait_result >= WAIT_OBJECT_0 &&
191 wait_result < WAIT_OBJECT_0 + handle_count) {
192 signaled_handle = handles[wait_result - WAIT_OBJECT_0];
193 } else if (wait_result == WAIT_FAILED) {
198 << wait_result;
238 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE);
240 if (wait_result == WAIT_FAILED) {
243 } else if (wait_result != WAIT_OBJECT_0) {
245 << wait_result;