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

  /cts/tests/tests/view/src/android/view/cts/
PixelCopyGLProducerCtsActivity.java 42 private CountDownLatch mFence;
82 if (mFence != null) {
83 mFence.countDown();
109 mRenderer.mFence = swapFence;
PixelCopyWideGamutViewProducerActivity.java 50 private CountDownLatch mFence = new CountDownLatch(3);
87 mFence.countDown();
88 if (mFence.getCount() > 0) {
96 if (!mFence.await(timeout, unit)) {
109 mFence = new CountDownLatch(3);
TextureViewCtsActivity.java 163 private CountDownLatch mFence;
167 mFence = fence;
177 mFence.countDown();
PixelCopyViewProducerActivity.java 51 private CountDownLatch mFence = new CountDownLatch(3);
90 mFence.countDown();
91 if (mFence.getCount() > 0) {
112 if (!mFence.await(timeout, unit)) {
125 mFence = new CountDownLatch(3);
  /frameworks/av/media/libstagefright/include/media/stagefright/
FrameRenderTracker.h 38 // 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;
  /frameworks/native/libs/gui/include/gui/
ConsumerBase.h 224 // mFence is a fence which will signal when the buffer associated with
228 sp<Fence> mFence;
BufferItem.h 59 // mFence is a fence that will signal when the buffer is idle.
60 sp<Fence> mFence;
62 // The std::shared_ptr<FenceTime> wrapper around mFence.
BufferSlot.h 183 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;
  /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 166 if (geofence.equals(w.mFence) && intent.equals(w.mIntent)) {
193 if (fence.equals(state.mFence)) {
455 pw.append(state.mFence.toString());
  /cts/tests/vr/src/android/vr/cts/
OpenGLESActivity.java 169 private CountDownLatch mFence;
173 mFence = fence;
183 mFence.countDown();
  /cts/tests/tests/graphics/jni/
VulkanPreTransformTestHelpers.h 102 VkFence mFence;
VulkanTestHelpers.h 121 VkFence mFence = VK_NULL_HANDLE;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SurfaceViewTests.java 126 private final CountDownLatch mFence = new CountDownLatch(1);
165 mFence.countDown();
174 return mFence;
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestBuffer.cpp 68 mCallback(item.mFence->dup(), mCallbackArgs);
261 if (mFence >= 0)
262 close(mFence);
263 mFence = -1;
274 if (mFence >= 0) {
275 return dup(mFence);
304 return dup(mFence);
310 mFence = fence;
324 int32_t mFence = -1;
  /hardware/google/av/codec2/include/
C2Buffer.h     [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/include/hwc2on1adapter/
HWC2On1Adapter.h 176 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;
  /hardware/qcom/display/msm8994/libhwcomposer/
HWC2On1Adapter.h 156 FencedBuffer() : mBuffer(nullptr), mFence(Fence::NO_FENCE) {}
159 void setFence(int fenceFd) { mFence = new Fence(fenceFd); }
162 int getFence() const { return mFence->dup(); }
166 sp<Fence> mFence;

Completed in 550 milliseconds