HomeSort by relevance Sort by last modified time
    Searched defs:wait_result (Results 1 - 10 of 10) 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/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))
  /external/libchrome/mojo/public/cpp/system/
wait.cc 26 MojoResult wait_result() const { return wait_result_; } function in class:mojo::__anon27859::TriggerContext
104 MojoResult ready_result = context->wait_result();
177 ready_result = contexts[index]->wait_result();
  /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/libchrome/mojo/public/cpp/system/tests/
invitation_unittest.cc 133 int wait_result = -1; local
135 child_process_, TestTimeouts::action_timeout(), &wait_result);
137 EXPECT_EQ(0, wait_result);
  /external/libchrome/mojo/core/
invitation_unittest.cc 461 int wait_result = -1; local
463 child_process, TestTimeouts::action_timeout(), &wait_result);
465 EXPECT_EQ(0, wait_result);
503 int wait_result = -1; local
505 child_process, TestTimeouts::action_timeout(), &wait_result);
507 EXPECT_EQ(0, wait_result);
544 int wait_result = -1; local
546 child_process, TestTimeouts::action_timeout(), &wait_result);
548 EXPECT_EQ(0, wait_result);
658 int wait_result = -1 local
694 int wait_result = -1; local
758 int wait_result = -1; local
844 int wait_result = -1; local
861 int wait_result = -1; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
kfd_ioctl.h 204 __u32 wait_result; member in struct:kfd_ioctl_wait_events_args
  /external/kernel-headers/original/uapi/linux/
kfd_ioctl.h 282 __u32 wait_result; /* from KFD */ member in struct:kfd_ioctl_wait_events_args

Completed in 172 milliseconds