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

  /external/compiler-rt/test/asan/TestCases/Windows/
queue_user_work_item.cc 47 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/
clone_test.cc 30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); local
31 if (wait_result < 0) {
35 if (wait_result == clone_pid && WIFEXITED(status)) {
  /art/test/931-agent-thread/
agent_thread.cc 88 int wait_result = pthread_barrier_wait(&data->b); local
89 CHECK(wait_result == PTHREAD_BARRIER_SERIAL_THREAD || wait_result == 0);
157 int wait_result = pthread_barrier_wait(&data.b); local
158 CHECK(wait_result == PTHREAD_BARRIER_SERIAL_THREAD || wait_result == 0);
  /external/valgrind/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 173 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/deqp/external/openglcts/modules/gl/
gl4cSyncTests.cpp 152 glw::GLenum wait_result = gl.clientWaitSync(sync, GL_SYNC_FLUSH_COMMANDS_BIT, TEST_SYNC_WAIT_TIMEOUT); local
158 if (GL_TIMEOUT_EXPIRED == wait_result)
169 else if ((GL_CONDITION_SATISFIED == wait_result) || (GL_ALREADY_SIGNALED == wait_result))
  /system/core/libappfuse/
FuseBridgeLoop.cc 371 const bool wait_result = epoll_controller_->Wait(bridges_.size(), &entries); local
375 if (!(wait_result && ProcessEventLocked(entries, callback))) {
  /external/autotest/client/cros/networking/
android_xmlrpc_server.py 393 wait_result = self.ad.ed.pop_event(wait_event, timeout_seconds)
397 actual_ssid = wait_result['data'][wutils.WifiEnums.SSID_KEY]
  /bionic/libc/kernel/uapi/linux/
kfd_ioctl.h 175 __u32 wait_result; member in struct:kfd_ioctl_wait_events_args
  /external/kernel-headers/original/uapi/linux/
kfd_ioctl.h 232 __u32 wait_result; /* from KFD */ member in struct:kfd_ioctl_wait_events_args
  /system/core/adb/
adb.cpp 859 const DWORD wait_result = WaitForMultipleObjects(arraysize(threads), local
861 if (wait_result == WAIT_TIMEOUT) {
875 if (wait_result != WAIT_OBJECT_0) {
876 fprintf(stderr, "adb: unexpected result waiting for threads: %lu: %s\n", wait_result,
    [all...]

Completed in 219 milliseconds