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.java183 FutureTask<Boolean> interruptReporter = untimedInterruptReporter(future, false); in runUntimedInterruptsTest() local
185 runNInterruptsTest(times, future, interruptReporter); in runUntimedInterruptsTest()
191 FutureTask<Boolean> interruptReporter = timedInterruptReporter(future); in runTimedInterruptsTest() local
193 runNInterruptsTest(times, future, interruptReporter); in runTimedInterruptsTest()
197 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest() argument
199 Thread waitingThread = new Thread(interruptReporter); in runNInterruptsTest()
207 assertEquals(times > 0, (boolean) interruptReporter.get(20, SECONDS)); in runNInterruptsTest()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DUninterruptibleFutureTest.java183 FutureTask<Boolean> interruptReporter = untimedInterruptReporter(future, false); in runUntimedInterruptsTest() local
185 runNInterruptsTest(times, future, interruptReporter); in runUntimedInterruptsTest()
191 FutureTask<Boolean> interruptReporter = timedInterruptReporter(future); in runTimedInterruptsTest() local
193 runNInterruptsTest(times, future, interruptReporter); in runTimedInterruptsTest()
197 int times, SettableFuture<String> future, FutureTask<Boolean> interruptReporter) in runNInterruptsTest() argument
199 Thread waitingThread = new Thread(interruptReporter); in runNInterruptsTest()
207 assertEquals(times > 0, (boolean) interruptReporter.get(20, SECONDS)); in runNInterruptsTest()