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

  /frameworks/base/libs/hwui/
Fence.h 70 EGLint waitStatus = eglClientWaitSyncKHR(mDisplay, mFence,
72 if (waitStatus == EGL_FALSE) {
75 return waitStatus == EGL_CONDITION_SATISFIED_KHR;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 135 /** waitStatus value to indicate thread has cancelled */
137 /** waitStatus value to indicate successor's thread needs unparking */
139 /** waitStatus value to indicate thread is waiting on condition */
142 * waitStatus value to indicate the next acquireShared should
181 volatile int waitStatus;
185 * for checking waitStatus. Assigned during enqueuing, and nulled
259 Node(Thread thread, int waitStatus) { // Used by Condition
260 this.waitStatus = waitStatus;
268 * If head exists, its waitStatus is guaranteed not to b
    [all...]
AbstractQueuedSynchronizer.java 365 /** waitStatus value to indicate thread has cancelled */
367 /** waitStatus value to indicate successor's thread needs unparking */
369 /** waitStatus value to indicate thread is waiting on condition */
372 * waitStatus value to indicate the next acquireShared should
411 volatile int waitStatus;
415 * for checking waitStatus. Assigned during enqueuing, and nulled
489 Node(Thread thread, int waitStatus) { // Used by Condition
490 this.waitStatus = waitStatus;
498 * If head exists, its waitStatus is guaranteed not to b
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_AssetAtlasService.cpp 204 EGLint waitStatus = eglClientWaitSyncKHR(display, fence,
206 if (waitStatus != EGL_CONDITION_SATISFIED_KHR) {

Completed in 291 milliseconds