Home
last modified time | relevance | path

Searched defs:delay (Results 1 – 25 of 164) sorted by relevance

1234567

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DTimerHandler.java87 final int delay) { in startKeyRepeatTimerOf()
93 obtainMessage(MSG_REPEAT_KEY, key.getCode(), repeatCount, tracker), delay); in startKeyRepeatTimerOf() local
110 public void startLongPressTimerOf(@Nonnull final PointerTracker tracker, final int delay) { in startLongPressTimerOf()
119 sendMessageDelayed(obtainMessage(messageId, tracker), delay); in startLongPressTimerOf() local
220 public void postDismissKeyPreview(@Nonnull final Key key, final long delay) { in postDismissKeyPreview()
221 sendMessageDelayed(obtainMessage(MSG_DISMISS_KEY_PREVIEW, key), delay); in postDismissKeyPreview() local
224 public void postDismissGestureFloatingPreviewText(final long delay) { in postDismissGestureFloatingPreviewText()
225 sendMessageDelayed(obtainMessage(MSG_DISMISS_GESTURE_FLOATING_PREVIEW_TEXT), delay); in postDismissGestureFloatingPreviewText() local
DTimerProxy.java43 public void startKeyRepeatTimerOf(@Nonnull PointerTracker tracker, int repeatCount, int delay); in startKeyRepeatTimerOf()
52 public void startLongPressTimerOf(@Nonnull PointerTracker tracker, int delay); in startLongPressTimerOf()
111 int delay) {} in startKeyRepeatTimerOf()
113 public void startLongPressTimerOf(@Nonnull PointerTracker tracker, int delay) {} in startLongPressTimerOf()
/packages/modules/Telephony/services/QualifiedNetworksService/tests/src/com/android/telephony/qns/
DQnsTimerTest.java248 long delay = setupAlarmForDelay(setDelay); in testAlarmOnLiteIdleModeMinDelay() local
260 long delay = setupAlarmForDelay(setDelay); in testAlarmOnLiteIdleMode() local
272 long delay = setupAlarmForDelay(setDelay); in testAlarmOnIdleModeMinDelay() local
284 long delay = setupAlarmForDelay(setDelay); in testAlarmOnIdleMode() local
307 long delay = setupAlarmForDelay(setDelay); in testAlarmInCallActiveState() local
/packages/services/Car/service/src/com/android/car/systeminterface/
DSystemStateInterface.java70 default void scheduleActionForBootCompleted(Runnable action, Duration delay) { in scheduleActionForBootCompleted()
87 void scheduleActionForBootCompleted(Runnable action, Duration delay, Duration delayRange); in scheduleActionForBootCompleted()
157 private void runActionWithDelay(Runnable action, Duration delay) { in runActionWithDelay()
223 static Duration getRandomizedDelay(Duration delay, Duration delayRange) { in getRandomizedDelay()
245 public void scheduleActionForBootCompleted(Runnable action, Duration delay, in scheduleActionForBootCompleted()
/packages/apps/Contacts/src/com/android/contacts/util/concurrent/
DContactsExecutors.java111 public ScheduledFuture<?> schedule(final Runnable command, long delay, TimeUnit unit) { in schedule()
120 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
136 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
180 private HandlerFuture(Handler handler, long delay, TimeUnit timeUnit, Callable<T> task) { in HandlerFuture()
231 public static HandlerFuture<Void> fromRunnable(Handler handler, long delay, TimeUnit unit, in fromRunnable()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestScheduledExecutorService.java120 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
127 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
139 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
185 final long delay; field in TestScheduledExecutorService.TestFuture
188 public TestFuture(Runnable runnable, long delay, TimeUnit unit) { in TestFuture()
DTestTimer.java99 public void schedule(TimerTask task, long delay) { in schedule()
105 public void schedule(TimerTask task, long delay, long period) { in schedule()
115 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { in scheduleAtFixedRate()
/packages/services/Car/tests/CustomizationTool/src/com/android/car/customization/tool/
DCustomizationToolService.kt49 val delay = 5000L in onServiceConnected() constant
/packages/modules/IntentResolver/tests/activity/src/com/android/intentresolver/
DTestContentProvider.kt37 val delay = in getStreamTypes() constant
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DTestScheduledExecutorService.java187 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
199 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
211 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
220 private long getNextExecutionTime(long delay, TimeUnit unit) { in getNextExecutionTime()
/packages/modules/Bluetooth/system/common/
Dtime_util_unittest.cc90 struct timespec delay = {}; in TEST() local
111 struct timespec delay = {}; in TEST() local
152 struct timespec delay = {}; in TEST() local
/packages/modules/Bluetooth/system/audio_hal_interface/fuzzer/
Dlibbt_audio_hal_le_audio_software_fuzzer.cpp70 uint16_t delay = fdp.ConsumeIntegral<uint16_t>(); in LLVMFuzzerTestOneInput() local
90 uint16_t delay = fdp.ConsumeIntegral<uint16_t>(); in LLVMFuzzerTestOneInput() local
/packages/modules/Connectivity/staticlibs/native/bpf_headers/include/bpf/
DWaitForProgsLoaded.h30 for (int delay = 5;; delay *= 2) { in waitForProgsLoaded() local
/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsProber.java136 private void startProbing(@NonNull ProbingInfo info, long delay) { in startProbing()
137 startSending(info.getServiceId(), info, delay); in startProbing() local
DMdnsPacketRepeater.java135 final long delay = request.getDelayMs(nextIndex); in handleMessage() local
136 sendMessageDelayed(obtainMessage(msg.what, nextIndex, 0, request), delay); in handleMessage() local
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DWnmData.java57 boolean ess, int delay) { in WnmData()
89 int delay) { in createDeauthImminentEvent()
/packages/services/Car/experimental/service/src/com/android/experimentalcar/
DITimer.java34 void schedule(TimerTask task, long delay); in schedule()
DSystemTimer.java36 public void schedule(TimerTask task, long delay) { in schedule()
/packages/services/Telephony/tests/src/com/android/
DTestExecutorService.java203 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
214 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
229 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
/packages/services/Car/experimental/tests/experimentalcarservice_unit_test/src/com/android/experimentalcar/
DFakeTimer.java34 public void schedule(TimerTask task, long delay) { in schedule()
/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dasync_manager.cc293 AsyncTaskId ExecAsync(AsyncUserId user_id, std::chrono::milliseconds delay, in ExecAsync()
300 std::chrono::milliseconds delay, in ExecAsyncPeriodically()
571 std::chrono::milliseconds delay, in ExecAsync()
577 AsyncUserId user_id, std::chrono::milliseconds delay, in ExecAsyncPeriodically()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/schedule/
DDeviceLockControllerScheduler.java59 ListenableFuture<Void> scheduleRetryCheckInWork(Duration delay); in scheduleRetryCheckInWork()
/packages/apps/Settings/src/com/android/settings/accessibility/
DAutoclickPreferenceController.java67 private int getAutoclickPreferenceSummaryIndex(int delay) { in getAutoclickPreferenceSummaryIndex()
/packages/apps/Launcher3/src/com/android/launcher3/statemanager/
DStateManager.java191 public void goToState(STATE_TYPE state, long delay, AnimatorListener listener) { in goToState()
198 public void goToState(STATE_TYPE state, long delay) { in goToState()
245 STATE_TYPE state, boolean animated, long delay, AnimatorListener listener) { in goToState()
/packages/apps/Messaging/src/com/android/messaging/util/
DNotificationPlayer.java144 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime; in startSound() local
157 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime; in stopSound() local

1234567