Home
last modified time | relevance | path

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

/cts/tests/JobScheduler/src/android/jobscheduler/
DMockJobService.java373 private CountDownLatch mStoppedLatch; field in MockJobService.TestEnvironment
464 return mStoppedLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS); in awaitStopped()
486 if (mStoppedLatch != null) { in notifyStopped()
487 mStoppedLatch.countDown(); in notifyStopped()
500 mStoppedLatch = null; in setExpectedExecutions()
516 mStoppedLatch = new CountDownLatch(1); in setExpectedStopped()
/cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/
DMockJobService.java373 private CountDownLatch mStoppedLatch; field in MockJobService.TestEnvironment
459 return mStoppedLatch.await(DEFAULT_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS); in awaitStopped()
478 if (mStoppedLatch != null) { in notifyStopped()
479 mStoppedLatch.countDown(); in notifyStopped()
492 mStoppedLatch = null; in setExpectedExecutions()
508 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()