Home
last modified time | relevance | path

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

12345678910>>...25

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DRetryManagerTest.java156 long delay = rm.getDelayForNextApn(false); in testRetryManagerEmpty() local
184 long delay = rm.getDelayForNextApn(false); in testRetryManagerOneApnNoRetry() local
206 long delay = rm.getDelayForNextApn(false); in testRetryManagerOneApnTwoRetries() local
261 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoApnsOneRetry() local
299 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoApnsTwoRetries() local
347 long delay = rm.getDelayForNextApn(false); in testRetryManagerTwoMmsApnsTwoRetries() local
395 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailed() local
430 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedWithTwoApns() local
489 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedWithThreeApns() local
546 long delay = rm.getDelayForNextApn(false); in testRetryManagerApnPermanentFailedAll() local
[all …]
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A 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
H A 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()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DExponentialBackoffTest.java74 long delay = mBackoffUnderTest.getCurrentDelay(); in testStartBackoff() local
96 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayIncreasedExponentially() local
111 long delay = mBackoffUnderTest.getCurrentDelay(); in testDelayShouldNotExceededTheMaximumLimit() local
/aosp12/frameworks/base/core/tests/coretests/src/android/animation/
H A DValueAnimatorTests.java82 final long delay = 200; in testStartDelay() local
84 assertEquals(a.getStartDelay(), delay); in testStartDelay() local
171 long delay = Math.max(a1.getTotalDuration(), a2.getTotalDuration()) + TOLERANCE; in testListenerCallbacks() local
233 long delay = Math.max(a1.getTotalDuration(), a2.getTotalDuration()) * 2; in testIsStarted() local
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/common/test/
H A Dpriority_queue_test.cpp214 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
283 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
303 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
323 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
344 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
365 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
387 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
410 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
430 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
452 auto delay = std::chrono::milliseconds(SHORT_INTERVAL); variable
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dtask_executor_adapter.cpp23 TaskExecutorAdapter::Duration delay) in Execute()
33 TaskExecutorAdapter::Duration delay, TaskExecutorAdapter::Duration interval) in Schedule()
38 TaskExecutorAdapter::Duration delay, TaskExecutorAdapter::Duration interval, uint64_t times) in Schedule()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/app/src/
H A Dtask_manager.cpp30 TaskManager::TaskId TaskManager::Execute(const Task &task, Duration delay) in Execute()
38 TaskManager::TaskId TaskManager::Schedule(const Task &task, Duration delay, Duration interval) in Schedule()
42 TaskManager::TaskId TaskManager::Schedule(const Task &task, Duration delay, Duration interval, uint… in Schedule()
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/concurrent/
H A 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()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java89 long delay = columns[0]; in startAnimations() local
117 long delay = columns[col]; in startAnimations() local
136 long delay = calculateDelay(row, 0); in getDelays() local
156 long delay = calculateDelay(row, col); in getDelays() local
181 public void createAnimation(final View view, long delay, long duration, float translationY, in createAnimation()
225 public static void startTranslationYAnimation(View view, long delay, long duration, in startTranslationYAnimation()
233 public static void startTranslationYAnimation(View view, long delay, long duration, in startTranslationYAnimation()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/include/
H A Dtask_executor.h43 TaskId Schedule(Duration delay, Task task) in Schedule()
53 TaskId Schedule(Task task, Duration delay, Duration interval) in Schedule()
58 TaskId Schedule(Task task, Duration delay, Duration interval, uint64_t times) in Schedule()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DAnimationProperties.java33 public long delay; field in AnimationProperties
H A DMediaHeaderView.java35 public long performRemoveAnimation(long duration, long delay, float translationDirection, in performRemoveAnimation()
42 public void performAddAnimation(long delay, long duration, boolean isHeadsUpAppear) { in performAddAnimation()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationDozeHelper.java37 public void fadeGrayscale(final ImageView target, final boolean dark, long delay) { in fadeGrayscale()
68 boolean dark, long delay, Animator.AnimatorListener listener) { in startIntensityAnimation()
83 boolean animate, long delay, View view) { in setDozing()
H A DNotificationIconDozeHelper.java47 public void setImageDark(ImageView target, boolean dark, boolean fade, long delay, in setImageDark()
66 private void fadeImageColorFilter(final ImageView target, boolean dark, long delay) { in fadeImageColorFilter()
72 private void fadeImageAlpha(final ImageView target, boolean dark, long delay) { in fadeImageAlpha()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
H A DMockScheduledExecutorService.java84 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
92 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
104 long delay, TimeUnit unit) { in scheduleWithFixedDelay()
195 MockScheduledFuture(Runnable runnable, long delay, TimeUnit timeUnit) { in MockScheduledFuture()
199 MockScheduledFuture(Callable<V> callable, long delay, TimeUnit timeUnit) { in MockScheduledFuture()
203 private MockScheduledFuture(Runnable runnable, Callable<V> callable, long delay) { in MockScheduledFuture()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/dfx/
H A Dsoftbus_adapter_xcollie.cpp38 void SoftBusRunOneShotTask(const char *name, void (*task)(void), uint64_t delay) in SoftBusRunOneShotTask()
47 …d SoftBusRunPeriodicalTask(const char *name, void (*task)(void), uint64_t interval, uint64_t delay) in SoftBusRunPeriodicalTask()
H A Dsoftbus_adapter_xcollie_virtual.cpp32 void SoftBusRunOneShotTask(const char *name, void(*task)(void), uint64_t delay) in SoftBusRunOneShotTask()
39 …id SoftBusRunPeriodicalTask(const char *name, void(*task)(void), uint64_t interval, uint64_t delay) in SoftBusRunPeriodicalTask()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Dthread_pool_test_stub.cpp68 TaskId ThreadPoolTestStub::Execute(const Task &task, Duration delay) in Execute()
81 TaskId ThreadPoolTestStub::Schedule(const Task &task, Duration delay, Duration interval) in Schedule()
86 TaskId ThreadPoolTestStub::Schedule(const Task &task, Duration delay, Duration interval, uint64_t t… in Schedule()
/aosp12/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A 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()
/aosp12/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java144 public LayoutAnimationController(Animation animation, float delay) { in LayoutAnimationController()
283 public void setDelay(float delay) { in setDelay()
323 final long delay = getDelayForView(view) + mAnimation.getStartOffset(); in getAnimationForView() local
378 final float delay = mDelay * mAnimation.getDuration(); in getDelayForView() local
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/include/
H A Dexecutor_pool.h91 TaskId Schedule(Duration delay, Task task) in Schedule()
101 TaskId Schedule(Task task, Duration delay, Duration interval) in Schedule()
106 TaskId Schedule(Task task, Duration delay, Duration interval, uint64_t times) in Schedule()
165 TaskId Schedule(InnerTask innerTask, Time delay) in Schedule()
/ohos5.0/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/
H A Dexecutor_pool.h87 TaskId Schedule(Duration delay, Task task) in Schedule()
97 TaskId Schedule(Task task, Duration delay, Duration interval) in Schedule()
102 TaskId Schedule(Task task, Duration delay, Duration interval, uint64_t times) in Schedule()
161 TaskId Schedule(InnerTask innerTask, Time delay) in Schedule()
/aosp12/frameworks/base/core/java/android/animation/
H A DAnimationHandler.java93 public void addAnimationFrameCallback(final AnimationFrameCallback callback, long delay) { in addAnimationFrameCallback()
197 public static void setFrameDelay(long delay) { in setFrameDelay()
267 public void setFrameDelay(long delay) { in setFrameDelay()
315 void setFrameDelay(long delay); in setFrameDelay()
/aosp12/system/bpf/libbpf_android/include/
H A Dlibbpf_android.h38 for (int delay = 5;; delay *= 2) { in waitForProgsLoaded() local

12345678910>>...25