/cts/tests/tests/view/src/android/view/cts/ |
D | TextureViewCtsActivity.java | 130 CountDownLatch fence = new CountDownLatch(1); in setWideColorGamut() local 133 }, fence); in setWideColorGamut() 135 if (!fence.await(TIME_OUT_MS, TimeUnit.MILLISECONDS)) { in setWideColorGamut() 145 CountDownLatch fence = new CountDownLatch(1); in getContents() local 150 }, fence); in getContents() 152 if (!fence.await(TIME_OUT_MS, TimeUnit.MILLISECONDS)) { in getContents() 166 RunSignalAndCatch(Runnable run, CountDownLatch fence) { in RunSignalAndCatch() argument 168 mFence = fence; in RunSignalAndCatch() 184 CountDownLatch fence = new CountDownLatch(1); in runOnGLThread() local 185 RunSignalAndCatch wrapper = new RunSignalAndCatch(r, fence); in runOnGLThread() [all …]
|
D | PixelCopyTest.java | 623 final CountDownLatch fence = new CountDownLatch(1); in runGcAndFinalizersSync() local 628 fence.countDown(); in runGcAndFinalizersSync() 638 } while (!fence.await(100, TimeUnit.MILLISECONDS)); in runGcAndFinalizersSync()
|
/cts/tests/openglperf2/jni/primitive/contextswitch/ |
D | ContextSwitchRenderer.cpp | 181 EGLSyncKHR fence = eglCreateSyncKHR(mEglDisplay, EGL_SYNC_FENCE_KHR, NULL); in drawWorkload() local 186 eglWaitSyncKHR(mEglDisplay, fence, 0); in drawWorkload() 187 eglDestroySyncKHR(mEglDisplay, fence); in drawWorkload() 204 fence = eglCreateSyncKHR(mEglDisplay, EGL_SYNC_FENCE_KHR, NULL); in drawWorkload() 226 eglWaitSyncKHR(mEglDisplay, fence, 0); in drawWorkload() 227 eglDestroySyncKHR(mEglDisplay, fence); in drawWorkload()
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
D | TextureViewTests.java | 108 final CountDownLatch fence = new CountDownLatch(1); in testReuseSurfaceTexture() local 124 textureview.post(fence::countDown); in testReuseSurfaceTexture() 126 }, true, fence) in testReuseSurfaceTexture() 133 final CountDownLatch fence = new CountDownLatch(1); in testLockCanvas() local 140 textureview.post(fence::countDown); in testLockCanvas() 157 }, true, fence) in testLockCanvas()
|
D | VectorDrawableTests.java | 84 final CountDownLatch fence = new CountDownLatch(1); in testInvalidateCache() local 117 root.post(fence::countDown); in testInvalidateCache() 124 }, true, fence) in testInvalidateCache()
|
D | LayerTests.java | 120 final CountDownLatch fence = new CountDownLatch(1); in testLayerPaintAlphaChanged() local 141 root.post(fence::countDown); in testLayerPaintAlphaChanged() 148 }, true, fence) in testLayerPaintAlphaChanged() 282 final CountDownLatch fence = new CountDownLatch(1); in testLayerResizeZero() local 310 root.post(fence::countDown); in testLayerResizeZero() 317 }, true, fence) in testLayerResizeZero()
|
D | PathClippingTests.java | 193 private ViewInitializer initBlueWebView(final CountDownLatch fence) { in initBlueWebView() argument 197 WebViewReadyHelper helper = new WebViewReadyHelper(webview, fence); in initBlueWebView()
|
/cts/tests/sensor/jni/ |
D | android_hardware_cts_SensorDirectReportTest.cpp | 44 int32_t fence = -1; in readHardwareBuffer() local 47 fence, nullptr, &address) == 0) { in readHardwareBuffer() 55 AHardwareBuffer_unlock(hardwareBuffer, &fence); in readHardwareBuffer()
|
D | SensorTest.cpp | 214 int32_t fence = -1; in release() local 215 AHardwareBuffer_unlock(mHardwareBuffer, &fence); in release()
|
/cts/tests/tests/nativehardware/jni/ |
D | AHardwareBufferTest.cpp | 356 int32_t fence = -1; in TEST() local 357 err = AHardwareBuffer_unlock(buffer, &fence); in TEST() 386 int32_t fence = -1; in TEST() local 387 err = AHardwareBuffer_unlock(buffer, &fence); in TEST() 433 int32_t fence = -1; in TEST() local 434 err = AHardwareBuffer_unlock(buffer, &fence); in TEST() 473 int32_t fence = -1; in TEST() local 474 err = AHardwareBuffer_unlock(buffer, &fence); in TEST()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-0415/ |
D | poc.cpp | 42 sp<Fence> fence; in start2() local 43 bufferProducer->dequeueBuffer(&buffer, &fence, 800, 600, 1, 0, nullptr, in start2()
|
/cts/hostsidetests/incident/apps/graphicsstatsapp/src/com/android/server/cts/device/graphicsstats/ |
D | DrawFramesActivity.java | 164 final CountDownLatch fence = new CountDownLatch(1); in drawFrames() local 179 mFramesFinishedFence = fence; in drawFrames() 182 if (!fence.await(timeoutDurationMs, TimeUnit.MILLISECONDS)) { in drawFrames()
|
/cts/tests/tests/view/jni/ |
D | android_view_cts_ASurfaceControlTest.cpp | 217 int fence = -1; in SurfaceTransaction_setSolidBuffer() local 219 bool err = getSolidBuffer(width, height, color, &buffer, &fence); in SurfaceTransaction_setSolidBuffer() 226 reinterpret_cast<ASurfaceControl*>(surfaceControl), buffer, fence); in SurfaceTransaction_setSolidBuffer() 240 int fence = -1; in SurfaceTransaction_setQuadrantBuffer() local 244 colorBottomRight, colorBottomLeft, &buffer, &fence); in SurfaceTransaction_setQuadrantBuffer() 251 reinterpret_cast<ASurfaceControl*>(surfaceControl), buffer, fence); in SurfaceTransaction_setQuadrantBuffer()
|
/cts/tests/vr/src/android/vr/cts/ |
D | OpenGLESActivity.java | 102 CountDownLatch fence = new CountDownLatch(1); in runOnGlThread() local 103 RunSignalAndCatch wrapper = new RunSignalAndCatch(r, fence); in runOnGlThread() 106 fence.await(5000, TimeUnit.MILLISECONDS); in runOnGlThread() 171 RunSignalAndCatch(Runnable run, CountDownLatch fence) { in RunSignalAndCatch() argument 173 mFence = fence; in RunSignalAndCatch()
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/ |
D | DrawActivity.kt | 159 val fence = CountDownLatch(1) in hashCode() constant 165 fence.countDown() in hashCode() 167 assertTrue(fence.await(TIME_OUT_MS, TimeUnit.MILLISECONDS)) in hashCode()
|
/cts/tests/tests/uirendering27/src/android/uirendering/cts/testinfrastructure/ |
D | DrawActivity.kt | 160 val fence = CountDownLatch(1) in hashCode() constant 166 fence.countDown() in hashCode() 168 assertTrue(fence.await(TIME_OUT_MS, TimeUnit.MILLISECONDS)) in hashCode()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-6736/ |
D | poc.c | 84 __u32 fence; /* Return value */ member
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8482/ |
D | poc.c | 90 __u32 fence; /* Return value */ member
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8432/ |
D | local_poc.h | 92 __u32 fence; /* Return value */ member
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8431/ |
D | local_poc.h | 92 __u32 fence; /* Return value */ member
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-0333/ |
D | local_poc.h | 129 int32_t fence; /* in/out, depends on flags */ member
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-6262/ |
D | local_poc.h | 322 __u32 fence; member
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | BitmapTest.java | 1977 final CountDownLatch fence = new CountDownLatch(1); in runGcAndFinalizersSync() local 1982 fence.countDown(); in runGcAndFinalizersSync() 1992 } while (!fence.await(100, TimeUnit.MILLISECONDS)); in runGcAndFinalizersSync()
|