Home
last modified time | relevance | path

Searched refs:mStoppedLatch (Results 1 – 3 of 3) sorted by relevance

/cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/
DMockJobService.java374 private CountDownLatch mStoppedLatch; field in MockJobService.TestEnvironment
460 return mStoppedLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS); in awaitStopped()
479 if (mStoppedLatch != null) { in notifyStopped()
480 mStoppedLatch.countDown(); in notifyStopped()
493 mStoppedLatch = null; in setExpectedExecutions()
509 mStoppedLatch = new CountDownLatch(1); in setExpectedStopped()
/cts/tests/JobScheduler/src/android/jobscheduler/
DMockJobService.java439 private CountDownLatch mStoppedLatch; field in MockJobService.TestEnvironment
558 return mStoppedLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS); in awaitStopped()
588 if (mStoppedLatch != null) { in notifyStopped()
589 mStoppedLatch.countDown(); in notifyStopped()
610 mStoppedLatch = null; in setExpectedExecutions()
630 mStoppedLatch = new CountDownLatch(1); in setExpectedStopped()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DActivitiesWatcher.java145 private final CountDownLatch mStoppedLatch = new CountDownLatch(1); field in ActivitiesWatcher.ActivityWatcher
179 return mStoppedLatch; in getLatch()