Home
last modified time | relevance | path

Searched refs:sLatch (Results 1 – 6 of 6) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DMyDrawable.java33 private static CountDownLatch sLatch; field in MyDrawable
50 sLatch.countDown(); in draw()
55 if (sLatch == null) { in getAutofilledBounds()
59 if (!sLatch.await(Timeouts.FILL_TIMEOUT.ms(), TimeUnit.MILLISECONDS)) { in getAutofilledBounds()
69 if (sLatch == null) { in assertDrawableNotDrawn()
73 if (sLatch.await(Timeouts.DRAWABLE_TIMEOUT_MS, TimeUnit.MILLISECONDS)) { in assertDrawableNotDrawn()
79 sLatch = new CountDownLatch(1); in initStatus()
85 sLatch = null; in clearStatus()
/cts/hostsidetests/statsdatom/apps/statsdapp/src/com/android/server/cts/device/statsdatom/
DStatsdJobService.java47 private static CountDownLatch sLatch; field in StatsdJobService
60 if (sLatch != null) {
61 sLatch.countDown();
69 if (sLatch == null || sLatch.getCount() == 0) { in resetCountDownLatch()
70 sLatch = new CountDownLatch(1); in resetCountDownLatch()
73 return sLatch; in resetCountDownLatch()
DStatsdSyncAdapter.java42 private static CountDownLatch sLatch; field in StatsdSyncAdapter
61 if (sLatch != null) { in onPerformSync()
62 sLatch.countDown(); in onPerformSync()
83 if (sLatch == null || sLatch.getCount() == 0) { in resetCountDownLatch()
84 sLatch = new CountDownLatch(1); in resetCountDownLatch()
87 return sLatch; in resetCountDownLatch()
/cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
DSimpleJobService.java43 private static CountDownLatch sLatch; field in SimpleJobService
54 if (sLatch != null) {
55 sLatch.countDown();
67 sLatch = new CountDownLatch(1); in resetCountDownLatch()
68 return sLatch; in resetCountDownLatch()
/cts/tests/tests/telecom/CallScreeningServiceTestApp/src/android/telecom/cts/screeningtestapp/
DCtsPostCallActivity.java37 private static CountDownLatch sLatch = new CountDownLatch(1); field in CtsPostCallActivity
48 sLatch.countDown(); in onCreate()
61 sLatch = new CountDownLatch(1); in resetPostCallActivity()
68 return sLatch.await(TEST_TIMEOUT, TimeUnit.MILLISECONDS); in waitForActivity()
/cts/common/device-side/bedstead/activitycontext/src/main/java/com/android/activitycontext/
DActivityContext.java53 private static CountDownLatch sLatch; field in ActivityContext
82 sLatch = new CountDownLatch(1); in getWithContext()
92 sLatch.await(); in getWithContext()
157 sLatch.countDown(); in onResume()