Home
last modified time | relevance | path

Searched defs:runnable (Results 1 – 12 of 12) sorted by relevance

/work/work-runtime/src/androidTest/java/androidx/work/impl/utils/
DForceStopRunnableTest.java117 ForceStopRunnable runnable = spy(mRunnable); in testReschedulesOnForceStop() local
127 ForceStopRunnable runnable = spy(mRunnable); in test_doNothingWhenNotForceStopped() local
137 ForceStopRunnable runnable = spy(mRunnable); in test_rescheduleWorkers_updatesSharedPreferences() local
145 ForceStopRunnable runnable = spy(mRunnable); in test_UnfinishedWork_getsScheduled() local
164 ForceStopRunnable runnable = spy(mRunnable); in testReconcileJobs() local
182 ForceStopRunnable runnable = spy(mRunnable); in test_rethrowForNonRecoverableSqliteExceptions() local
198 ForceStopRunnable runnable = spy(mRunnable); in test_initializationExceptionHandler() local
229 ForceStopRunnable runnable = spy(mRunnable); in test_InitializationExceptionHandler_migrationFailures() local
237 ForceStopRunnable runnable = spy(mRunnable); in test_completeOnMultiProcessChecks() local
DSerialExecutorTest.kt51 for (runnable in commands) { in testSerialExecutor() variable
/work/work-runtime/src/main/java/androidx/work/
DRunnableScheduler.java36 void scheduleWithDelay(@IntRange(from = 0) long delayInMillis, @NonNull Runnable runnable); in scheduleWithDelay()
44 void cancel(@NonNull Runnable runnable); in cancel()
/work/work-runtime/src/main/java/androidx/work/impl/
DDefaultRunnableScheduler.java47 public void scheduleWithDelay(long delayInMillis, @NonNull Runnable runnable) { in scheduleWithDelay()
52 public void cancel(@NonNull Runnable runnable) { in cancel()
/work/work-runtime/src/main/java/androidx/work/impl/background/greedy/
DDelayedWorkTracker.java75 Runnable runnable = new Runnable() { in schedule() local
95 Runnable runnable = mRunnables.remove(workSpecId); in unschedule() local
/work/work-runtime/src/main/java/androidx/work/impl/utils/taskexecutor/
DTaskExecutor.java45 default void executeOnTaskThread(@NonNull Runnable runnable) { in executeOnTaskThread()
/work/work-runtime/src/androidTest/java/androidx/work/impl/utils/taskexecutor/
DInstantWorkTaskExecutor.java40 public void executeOnTaskThread(@NonNull Runnable runnable) { in executeOnTaskThread()
/work/work-runtime/src/main/java/androidx/work/impl/utils/
DSerialExecutorImpl.java88 Task(@NonNull SerialExecutorImpl serialExecutor, @NonNull Runnable runnable) { in Task()
DWorkTimer.java73 WorkTimerRunnable runnable = new WorkTimerRunnable(this, id); in startTimer() local
/work/work-runtime/src/androidTest/java/androidx/work/impl/
DProcessorTests.kt98 val mainExecutor = Executor { runnable -> runnable.run() } in <lambda>() method
DWorkManagerImplTest.java1972 ForceStopRunnable runnable = new ForceStopRunnable(mContext, mWorkManagerImpl); in testForceStopRunnable_resetsRunningWorkStatuses() local
/work/work-runtime/src/main/java/androidx/work/impl/utils/futures/
DAbstractFuture.java1041 private static void executeListener(Runnable runnable, Executor executor) { in executeListener()