Home
last modified time | relevance | path

Searched refs:executionThread (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAbstractExecutionThreadServiceTest.java45 private Thread executionThread; field in AbstractExecutionThreadServiceTest
51 executionThread = new Thread(command);
52 executionThread.setUncaughtExceptionHandler(
59 executionThread.start();
84 executionThread.join(); in testServiceStartStop()
100 executionThread.join(); in testServiceStopIdempotence()
112 executionThread.join(); in testServiceExitingOnItsOwn()
184 executionThread.join(); in testServiceThrowOnStartUp()
219 executionThread.join(); in testServiceThrowOnRun()
236 executionThread.join(); in testServiceThrowOnRunAndThenAgainOnShutDown()
[all …]
DAbstractServiceTest.java46 private Thread executionThread; field in AbstractServiceTest
421 executionThread.join(); in testThreadedServiceStopIdempotenceAfterWait()
510 executionThread = new Thread(runnable); in invokeOnExecutionThreadForTest()
511 executionThread.setUncaughtExceptionHandler( in invokeOnExecutionThreadForTest()
518 executionThread.start(); in invokeOnExecutionThreadForTest()
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DAbstractExecutionThreadServiceTest.java45 private Thread executionThread; field in AbstractExecutionThreadServiceTest
51 executionThread = new Thread(command);
52 executionThread.setUncaughtExceptionHandler(
59 executionThread.start();
84 executionThread.join(); in testServiceStartStop()
100 executionThread.join(); in testServiceStopIdempotence()
112 executionThread.join(); in testServiceExitingOnItsOwn()
184 executionThread.join(); in testServiceThrowOnStartUp()
219 executionThread.join(); in testServiceThrowOnRun()
236 executionThread.join(); in testServiceThrowOnRunAndThenAgainOnShutDown()
[all …]
DAbstractServiceTest.java46 private Thread executionThread; field in AbstractServiceTest
421 executionThread.join(); in testThreadedServiceStopIdempotenceAfterWait()
510 executionThread = new Thread(runnable); in invokeOnExecutionThreadForTest()
511 executionThread.setUncaughtExceptionHandler( in invokeOnExecutionThreadForTest()
518 executionThread.start(); in invokeOnExecutionThreadForTest()
/external/apache-http/src/org/apache/http/impl/conn/
DAbstractClientConnAdapter.java89 private final Thread executionThread; field in AbstractClientConnAdapter
121 executionThread = Thread.currentThread(); in AbstractClientConnAdapter()
399 if (executionThread.equals(Thread.currentThread())) { in abortConnection()