Home
last modified time | relevance | path

Searched refs:executeAtTime (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/
H A DDelayableExecutor.java53 default Runnable executeAtTime(Runnable r, long uptime) { in executeAtTime() method
54 return executeAtTime(r, uptime, TimeUnit.MILLISECONDS); in executeAtTime()
64 Runnable executeAtTime(Runnable r, long uptimeMillis, TimeUnit unit); in executeAtTime() method
H A DExecutorImpl.java53 public Runnable executeAtTime(Runnable r, long uptimeMillis, TimeUnit unit) { in executeAtTime() method in ExecutorImpl
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/util/concurrency/
H A DFakeExecutor.java149 return executeAtTime(r, mClock.uptimeMillis() + unit.toMillis(delay)); in executeDelayed()
153 public Runnable executeAtTime(Runnable r, long uptime, TimeUnit unit) { in executeAtTime() method in FakeExecutor
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/concurrency/
H A DFakeExecutorTest.java231 fakeExecutor.executeAtTime(runnableB, 0); // this is in the past! in testExecutionOrder()
232 fakeExecutor.executeAtTime(runnableC, 11000); in testExecutionOrder()
233 fakeExecutor.executeAtTime(runnableD, 10500); in testExecutionOrder()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DVisualStabilityCoordinator.java253 mDelayableExecutor.executeAtTime( in temporarilyAllowSectionChanges()
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dexecutors.md70 `executeAtTime(Runnable r, long uptimeMillis)` to the interface, just like
118 postAtTime() | `none` | executeAtTime()