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.java112 @VisibleForTesting ExecutorService deletionExecutor; field in FileOperationService
145 if (deletionExecutor == null) { in onCreate()
146 deletionExecutor = Executors.newCachedThreadPool(); in onCreate()
189 List<Runnable> unfinishedDeletions = deletionExecutor.shutdownNow(); in onDestroy()
199 deletionExecutor = null; in onDestroy()
308 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()