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

  /frameworks/av/include/media/stagefright/
FrameRenderTracker.h 39 // 1. queued frame: mMediaTime and mGraphicBuffer are set for the frame. mFence is the
41 // Key characteristics: mFence is not NULL and mIndex is negative.
43 // 2. dequeued frame: mFence is updated with the dequeue fence (write fence). mIndex is set.
44 // Key characteristics: mFence is not NULL and mIndex is non-negative. mRenderTime is still
47 // 3. rendered frame or frame: mFence is cleared, mRenderTimeNs is set.
48 // Key characteristics: mFence is NULL.
66 mFence(fence) {
75 mFence(NULL) {
83 sp<Fence> mFence;
  /frameworks/native/include/gui/
ConsumerBase.h 201 // mFence is a fence which will signal when the buffer associated with
205 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;
BufferItem.h 57 // mFence is a fence that will signal when the buffer is idle.
58 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 149 milliseconds