Searched refs:awaitStopped (Results 1 – 4 of 4) sorted by relevance
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | ServiceManagerTest.java | 166 manager.stopAsync().awaitStopped(); in testServiceStartStop() 194 manager.stopAsync().awaitStopped(); in testFailStart() 215 manager.stopAsync().awaitStopped(); in testFailRun() 233 manager.stopAsync().awaitStopped(); in testFailStop() 263 manager.awaitStopped(1, TimeUnit.MILLISECONDS); in testTimeouts() 267 manager.awaitStopped(100, TimeUnit.MILLISECONDS); // no exception thrown in testTimeouts() 319 manager.awaitStopped(10, TimeUnit.MILLISECONDS); in testFailStart_stopOthers() 351 manager.stopAsync().awaitStopped(); in testEmptyServiceManager() 414 manager.stopAsync().awaitStopped(); in testListenerDeadlock() 522 manager.stopAsync().awaitStopped(1, TimeUnit.SECONDS); in testTransitionRace()
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | StreamServiceTest.java | 105 awaitStopped(100, TimeUnit.MILLISECONDS); in testReadOutput() 113 awaitStopped(100, TimeUnit.MILLISECONDS); in failingProcess() 122 awaitStopped(200, TimeUnit.MILLISECONDS); // we in processDoesntExit() 139 awaitStopped(100, TimeUnit.MILLISECONDS); in testSocketInputOutput() 157 awaitStopped(100, TimeUnit.MILLISECONDS); in testSocketClosesBeforeProcess() 181 private void awaitStopped(long time, TimeUnit unit) throws InterruptedException { in awaitStopped() method in StreamServiceTest
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | ServiceManager.java | 337 public void awaitStopped() { in awaitStopped() method in ServiceManager 338 state.awaitStopped(); in awaitStopped() 350 public void awaitStopped(long timeout, TimeUnit unit) throws TimeoutException { in awaitStopped() method in ServiceManager 351 state.awaitStopped(timeout, unit); in awaitStopped() 555 void awaitStopped() { in awaitStopped() method in ServiceManager.ServiceManagerState 560 void awaitStopped(long timeout, TimeUnit unit) throws TimeoutException { in awaitStopped() method in ServiceManager.ServiceManagerState
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | CaliperMain.java | 127 serviceManager.stopAsync().awaitStopped(10, TimeUnit.SECONDS); in exitlessMain()
|