Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/common/concurrent/
DAsyncTaskExecutors.java48 return new SimpleAsyncTaskExecutor(AsyncTask.SERIAL_EXECUTOR); in createAsyncTaskExecutor()
61 return new SimpleAsyncTaskExecutor(AsyncTask.THREAD_POOL_EXECUTOR); in createThreadPoolExecutor()
77 static class SimpleAsyncTaskExecutor implements AsyncTaskExecutor { class in AsyncTaskExecutors
81 public SimpleAsyncTaskExecutor(Executor executor) { in SimpleAsyncTaskExecutor() method in AsyncTaskExecutors.SimpleAsyncTaskExecutor
DDialerUiTaskFragment.java27 import com.android.dialer.common.concurrent.AsyncTaskExecutors.SimpleAsyncTaskExecutor;
96 fragment.serialExecutor = new SimpleAsyncTaskExecutor(serialExecutorService); in create()
99 fragment.parallelExecutor = new SimpleAsyncTaskExecutor(parallelExecutorService); in create()
128 new SimpleAsyncTaskExecutor(executor).submit(taskId, new InternalTask(), input); in executeOnCustomExecutor()