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

  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 124 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime);
125 if ((waitResult != 0) && (waitResult != ETIMEDOUT))
126 ALOGE ("CondVar::wait: fail timed wait; error=0x%X", waitResult);
127 retVal = (waitResult == 0); //waited successfully
  /packages/apps/Nfc/nci/jni/
CondVar.cpp 122 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime);
123 if ((waitResult != 0) && (waitResult != ETIMEDOUT))
124 ALOGE ("CondVar::wait: fail timed wait; error=0x%X", waitResult);
125 retVal = (waitResult == 0); //waited successfully
  /external/lzma/CPP/7zip/Common/
StreamBinder.cpp 132 DWORD waitResult = ::WaitForMultipleObjects(2, events, FALSE, INFINITE);
133 if (waitResult != WAIT_OBJECT_0 + 0)
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlVboPerfTest.java 101 boolean waitResult = activity
103 assertTrue("timeout while waiting for rendering completion", waitResult);
  /cts/tests/tests/view/src/android/view/cts/
DisplayRefreshRateTest.java 64 public final synchronized float waitResult() {
183 float achievedFps = mResult.waitResult();
  /frameworks/native/libs/ui/
FramebufferNativeWindow.cpp 227 int waitResult = fence->wait(Fence::TIMEOUT_NEVER);
228 if (waitResult != OK) {
230 "error: %d", waitResult);
231 return waitResult;
  /external/deqp/framework/delibs/deutil/
deProcess.c 393 pid_t waitResult;
402 while ((waitResult = waitpid(process->pid, &status, 0)) != process->pid)
405 if (waitResult != process->pid)
  /frameworks/native/libs/gui/
Surface.cpp 148 int waitResult = fence->waitForever("dequeueBuffer_DEPRECATED");
149 if (waitResult != OK) {
151 waitResult);
153 return waitResult;
    [all...]

Completed in 367 milliseconds