Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperationService.java115 @VisibleForTesting ExecutorService deletionExecutor; field in FileOperationService
148 if (deletionExecutor == null) { in onCreate()
149 deletionExecutor = Executors.newCachedThreadPool(); in onCreate()
192 List<Runnable> unfinishedDeletions = deletionExecutor.shutdownNow(); in onDestroy()
202 deletionExecutor = null; in onDestroy()
311 return deletionExecutor; in getExecutorService()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/services/
DFileOperationServiceTest.java98 assertNull(mService.deletionExecutor); in setUp()
99 mService.deletionExecutor = mDeletionExecutor; in setUp()