Searched refs:sAsyncTaskExecutor (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
D | CallLogAsyncTaskUtil.java | 134 private static AsyncTaskExecutor sAsyncTaskExecutor; field in CallLogAsyncTaskUtil 137 sAsyncTaskExecutor = AsyncTaskExecutors.createThreadPoolExecutor(); in initTaskExecutor() 144 if (sAsyncTaskExecutor == null) { in getCallDetails() 148 sAsyncTaskExecutor.submit(Tasks.GET_CALL_DETAILS, in getCallDetails() 267 if (sAsyncTaskExecutor == null) { in deleteCalls() 271 sAsyncTaskExecutor.submit(Tasks.DELETE_CALL, new AsyncTask<Void, Void, Void>() { in deleteCalls() 304 if (sAsyncTaskExecutor == null) { in deleteBlockedCall() 308 sAsyncTaskExecutor.submit(Tasks.DELETE_BLOCKED_CALL, new AsyncTask<Void, Void, Long>() { in deleteBlockedCall() 348 if (sAsyncTaskExecutor == null) { in markVoicemailAsRead() 352 sAsyncTaskExecutor.submit(Tasks.MARK_VOICEMAIL_READ, new AsyncTask<Void, Void, Void>() { in markVoicemailAsRead() [all …]
|