Searched defs:mFence (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/include/gui/
H A DConsumerBase.h212 // mFence is a fence which will signal when the buffer associated with
216 sp<Fence> mFence; member in struct:android::ConsumerBase::Slot
H A DBufferItem.h57 // mFence is a fence that will signal when the buffer is idle.
58 sp<Fence> mFence; member in class:android::BufferItem
60 // The std::shared_ptr<FenceTime> wrapper around mFence.
H A DBufferSlot.h183 mFence(Fence::NO_FENCE),
212 // mFence, below.)
215 // mFence is a fence which will signal when work initiated by the
223 // buffer, and mFence is set to NO_FENCE.
224 sp<Fence> mFence; member in struct:android::BufferSlot
/frameworks/av/include/media/stagefright/
H A DFrameRenderTracker.h38 // 1. queued frame: mMediaTime and mGraphicBuffer are set for the frame. mFence is the
40 // Key characteristics: mFence is not NULL and mIndex is negative.
42 // 2. dequeued frame: mFence is updated with the dequeue fence (write fence). mIndex is set.
43 // Key characteristics: mFence is not NULL and mIndex is non-negative. mRenderTime is still
46 // 3. rendered frame or frame: mFence is cleared, mRenderTimeNs is set.
47 // Key characteristics: mFence is NULL.
66 mFence(fence) {
75 mFence(NULL) {
83 sp<Fence> mFence; member in struct:android::RenderedFrameInfo
/frameworks/av/media/libstagefright/foundation/include/
H A DFrameRenderTracker.h38 // 1. queued frame: mMediaTime and mGraphicBuffer are set for the frame. mFence is the
40 // Key characteristics: mFence is not NULL and mIndex is negative.
42 // 2. dequeued frame: mFence is updated with the dequeue fence (write fence). mIndex is set.
43 // Key characteristics: mFence is not NULL and mIndex is non-negative. mRenderTime is still
46 // 3. rendered frame or frame: mFence is cleared, mRenderTimeNs is set.
47 // Key characteristics: mFence is NULL.
66 mFence(fence) {
75 mFence(NULL) {
83 sp<Fence> mFence; member in struct:android::RenderedFrameInfo
/frameworks/av/media/libstagefright/include/
H A DFrameRenderTracker.h38 // 1. queued frame: mMediaTime and mGraphicBuffer are set for the frame. mFence is the
40 // Key characteristics: mFence is not NULL and mIndex is negative.
42 // 2. dequeued frame: mFence is updated with the dequeue fence (write fence). mIndex is set.
43 // Key characteristics: mFence is not NULL and mIndex is non-negative. mRenderTime is still
46 // 3. rendered frame or frame: mFence is cleared, mRenderTimeNs is set.
47 // Key characteristics: mFence is NULL.
66 mFence(fence) {
75 mFence(NULL) {
83 sp<Fence> mFence; member in struct:android::RenderedFrameInfo
/frameworks/base/services/core/java/com/android/server/location/
H A DGeofenceState.java35 public final Geofence mFence; field in class:GeofenceState
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);
/frameworks/av/media/libstagefright/codec2/include/
H A DC2Buffer.h517 C2Fence fence() const { return mFence; }
520 C2Fence mFence; member in class:android::C2ConstLinearBlock
997 C2Fence fence() const { return mFence; }
1000 C2Fence mFence;
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestBuffer.cpp65 mCallback(item.mFence->dup(), mCallbackArgs);
258 if (mFence >= 0)
259 close(mFence);
260 mFence = -1;
271 if (mFence >= 0) {
272 return dup(mFence);
301 return dup(mFence);
307 mFence = fence;
321 int32_t mFence = -1; member in class:Hwc2TestFenceGenerator
/frameworks/native/libs/hwc2on1adapter/include/hwc2on1adapter/
H A DHWC2On1Adapter.h176 FencedBuffer() : mBuffer(nullptr), mFence(MiniFence::NO_FENCE) {}
179 void setFence(int fenceFd) { mFence = new MiniFence(fenceFd); }
182 int getFence() const { return mFence->dup(); }
186 sp<MiniFence> mFence; member in class:android::HWC2On1Adapter::FencedBuffer

Completed in 1693 milliseconds