Home
last modified time | relevance | path

Searched refs:interruptReporter (Results 1 – 2 of 2) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DUninterruptibleFutureTest.java184 FutureTask<Boolean> interruptReporter = untimedInterruptReporter(future, false); in runUntimedInterruptsTest() local
186 runNInterruptsTest(times, future, interruptReporter); in runUntimedInterruptsTest()
192 FutureTask<Boolean> interruptReporter = timedInterruptReporter(future); in runTimedInterruptsTest() local
194 runNInterruptsTest(times, future, interruptReporter); in runTimedInterruptsTest()
198 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest() argument
200 Thread waitingThread = new Thread(interruptReporter); in runNInterruptsTest()
208 assertEquals(times > 0, (boolean) interruptReporter.get(20, SECONDS)); in runNInterruptsTest()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DUninterruptibleFutureTest.java184 FutureTask<Boolean> interruptReporter = untimedInterruptReporter(future, false); in runUntimedInterruptsTest() local
186 runNInterruptsTest(times, future, interruptReporter); in runUntimedInterruptsTest()
192 FutureTask<Boolean> interruptReporter = timedInterruptReporter(future); in runTimedInterruptsTest() local
194 runNInterruptsTest(times, future, interruptReporter); in runTimedInterruptsTest()
198 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest() argument
200 Thread waitingThread = new Thread(interruptReporter); in runNInterruptsTest()
208 assertEquals(times > 0, (boolean) interruptReporter.get(20, SECONDS)); in runNInterruptsTest()