Home
last modified time | relevance | path

Searched refs:scheduledExecutorService (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonelookup/cp2/
DCp2ExtendedDirectoryPhoneLookup.java70 private final ScheduledExecutorService scheduledExecutorService; field in Cp2ExtendedDirectoryPhoneLookup
77 @NonUiSerial ScheduledExecutorService scheduledExecutorService, in Cp2ExtendedDirectoryPhoneLookup() argument
83 this.scheduledExecutorService = scheduledExecutorService; in Cp2ExtendedDirectoryPhoneLookup()
111 cp2InfoFuture, timeoutMillis, TimeUnit.MILLISECONDS, scheduledExecutorService), in lookup()
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
DVoicemailPlaybackPresenter.java116 private static ScheduledExecutorService scheduledExecutorService; field in VoicemailPlaybackPresenter
188 if (scheduledExecutorService == null) { in getScheduledExecutorServiceInstance()
189 scheduledExecutorService = Executors.newScheduledThreadPool(NUMBER_OF_THREADS_IN_POOL); in getScheduledExecutorServiceInstance()
191 return scheduledExecutorService; in getScheduledExecutorServiceInstance()
381 if (scheduledExecutorService != null) { in onDestroy()
382 scheduledExecutorService.shutdown(); in onDestroy()
383 scheduledExecutorService = null; in onDestroy()
/packages/modules/Uwb/generic_ranging/src/com/android/ranging/generic/ranging/
DPrecisionRangingImpl.java193 ScheduledExecutorService scheduledExecutorService) { in PrecisionRangingImpl() argument
198 scheduledExecutorService, in PrecisionRangingImpl()
209 ScheduledExecutorService scheduledExecutorService, in PrecisionRangingImpl() argument
215 this.periodicUpdateExecutorService = scheduledExecutorService; in PrecisionRangingImpl()
216 this.internalExecutorService = scheduledExecutorService; in PrecisionRangingImpl()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/
DAdIdFetcher.java143 ScheduledExecutorService scheduledExecutorService) { in getFutureWithTimeout() argument
148 out, timeoutInMs, TimeUnit.MILLISECONDS, scheduledExecutorService); in getFutureWithTimeout()
DPersistAdSelectionResultRunner.java155 @NonNull final ScheduledThreadPoolExecutor scheduledExecutorService, in PersistAdSelectionResultRunner() argument
173 Objects.requireNonNull(scheduledExecutorService); in PersistAdSelectionResultRunner()
189 mScheduledExecutorService = scheduledExecutorService; in PersistAdSelectionResultRunner()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationQueue.java92 ScheduledExecutorService scheduledExecutorService, in CarHeadsUpNotificationQueue() argument
157 mScheduledExecutorService = scheduledExecutorService; in CarHeadsUpNotificationQueue()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java3255 TestScheduledExecutorService scheduledExecutorService = new TestScheduledExecutorService(); in testConnectionServiceCreateConnectionTimeout() local
3256 service.setScheduledExecutorService(scheduledExecutorService); in testConnectionServiceCreateConnectionTimeout()
3271 return scheduledExecutorService.isRunnableScheduledAtTime(15000L); in testConnectionServiceCreateConnectionTimeout()
3274 scheduledExecutorService.advanceTime(15000L); in testConnectionServiceCreateConnectionTimeout()