Searched refs:executeRepeatedly (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/concurrency/ |
D | RepeatableExecutorTest.java | 63 mExecutor.executeRepeatedly(mCountingTask, DELAY, DELAY); in testRepeats() 75 mExecutor.executeRepeatedly(mCountingTask, 2 * DELAY, DELAY); in testNoExecutionBeforeStartDelay() 85 mExecutor.executeRepeatedly(mCountingTask, 2 * DELAY, DELAY); in testExecuteAfterStartDelay() 97 mExecutor.executeRepeatedly(mCountingTask, 0L, DELAY); in testExecuteWithZeroStartDelay() 107 mExecutor.executeRepeatedly(mCountingTask, DELAY, DELAY); in testAdvanceTimeTwice() 121 Runnable cancel = mExecutor.executeRepeatedly(mCountingTask, DELAY, DELAY); in testCancel() 134 Runnable cancel = mExecutor.executeRepeatedly(mCountingTask, DELAY, DELAY); in testCancelAfterStart()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/ |
D | RepeatableExecutor.java | 40 default Runnable executeRepeatedly(Runnable r, long initialDelayMillis, long delayMillis) { in executeRepeatedly() method 41 return executeRepeatedly(r, initialDelayMillis, delayMillis, TimeUnit.MILLISECONDS); in executeRepeatedly() 53 Runnable executeRepeatedly(Runnable r, long initialDelay, long delay, TimeUnit unit); in executeRepeatedly() method
|
D | RepeatableExecutorImpl.java | 38 public Runnable executeRepeatedly(Runnable r, long initDelay, long delay, TimeUnit unit) { in executeRepeatedly() method in RepeatableExecutorImpl
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/viewmodel/ |
D | SeekBarViewModel.kt | 319 bgExecutor.executeRepeatedly( in checkIfPollingNeeded()
|