Home
last modified time | relevance | path

Searched refs:completionRunnable (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/util/
DSimpleBroadcastReceiverTest.kt49 @Mock private lateinit var completionRunnable: Runnable variable in com.android.launcher3.util.SimpleBroadcastReceiverTest
75 underTest.register(completionRunnable, "test_action_1", "test_action_2") in async_register_withCompletionRunnable()
79 verify(completionRunnable).run() in async_register_withCompletionRunnable()
88 underTest.register(completionRunnable, 1, "test_action_1", "test_action_2") in async_register_withCompletionRunnable_and_flag()
92 verify(completionRunnable).run() in async_register_withCompletionRunnable_and_flag()
118 underTest.register(completionRunnable, 1, "test_action_1", "test_action_2") in sync_register_withCompletionRunnable_and_flag()
122 verify(completionRunnable).run() in sync_register_withCompletionRunnable_and_flag()
134 underTest.register(completionRunnable, "permission", 1, "test_action_1", "test_action_2") in sync_register_withCompletionRunnable_and_permission_and_flag()
145 verify(completionRunnable).run() in sync_register_withCompletionRunnable_and_permission_and_flag()
/packages/services/Car/tests/CarServiceTest/src/com/android/car/power/
DCarPowerManagementServiceTest.java494 Runnable completionRunnable = () -> cpms.completeHandlingPowerStateChange(state, in testSleepShutdownFromPreShutdownPrepare()
503 handler.post(completionRunnable); in testSleepShutdownFromPreShutdownPrepare()