Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/util/concurrent/
DMoreExecutors.java84 public static ExecutorService getExitingExecutorService( in getExitingExecutorService() method in MoreExecutors
87 .getExitingExecutorService(executor, terminationTimeout, timeUnit); in getExitingExecutorService()
147 public static ExecutorService getExitingExecutorService(ThreadPoolExecutor executor) { in getExitingExecutorService() method in MoreExecutors
148 return new Application().getExitingExecutorService(executor); in getExitingExecutorService()
175 final ExecutorService getExitingExecutorService( in getExitingExecutorService() method in MoreExecutors.Application
213 final ExecutorService getExitingExecutorService(ThreadPoolExecutor executor) { in getExitingExecutorService() method in MoreExecutors.Application
214 return getExitingExecutorService(executor, 120, TimeUnit.SECONDS); in getExitingExecutorService()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DMoreExecutorsTest.java536 assertNotNull(application.getExitingExecutorService(executor)); in testGetExitingExcutorService_executorSetToUseDaemonThreads()
545 application.getExitingExecutorService(executor).execute(EMPTY_RUNNABLE); in testGetExitingExcutorService_executorDelegatesToOriginal()
554 application.getExitingExecutorService(executor); in testGetExitingExcutorService_shutdownHookRegistered()