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

  /external/chromium_org/third_party/angle/src/libGLESv2/
Fence.h 42 rx::FenceImpl *mFence;
64 rx::FenceImpl *mFence;
  /frameworks/base/libs/hwui/
Fence.h 46 mFence = eglCreateSyncKHR(mDisplay, EGL_SYNC_FENCE_KHR, NULL);
48 mFence = EGL_NO_SYNC_KHR;
57 if (mFence != EGL_NO_SYNC_KHR) {
58 eglDestroySyncKHR(mDisplay, mFence);
70 EGLint waitStatus = eglClientWaitSyncKHR(mDisplay, mFence,
80 EGLSyncKHR mFence;
101 mFence.wait(mTimeout);
106 Fence mFence;
  /frameworks/native/include/gui/
BufferItem.h 57 // mFence is a fence that will signal when the buffer is idle.
58 sp<Fence> mFence;
ConsumerBase.h 190 // mFence is a fence which will signal when the buffer associated with
194 sp<Fence> mFence;
BufferSlot.h 112 // mFence, below.)
115 // mFence is a fence which will signal when work initiated by the
123 // buffer, and mFence is set to NO_FENCE.
124 sp<Fence> mFence;
IGraphicBufferConsumer.h 64 // mFence is a fence that will signal when the buffer is idle.
65 sp<Fence> mFence;
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceState.java 35 public final Geofence mFence;
51 mFence = fence;
72 boolean inside = mDistanceToCenter <= Math.max(mFence.getRadius(), location.getAccuracy());
95 return Math.abs(mFence.getRadius() - mDistanceToCenter);
112 return String.format("%s d=%.0f %s", mFence.toString(), mDistanceToCenter, state);
GeofenceManager.java 132 if (geofence.equals(w.mFence) && intent.equals(w.mIntent)) {
159 if (fence.equals(state.mFence)) {
420 pw.append(state.mFence.toString());

Completed in 220 milliseconds