/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/pipeline/ |
D | MediaSessionBasedFilterTest.kt | 71 private lateinit var bgExecutor: FakeExecutor variable in com.android.systemui.media.controls.pipeline.MediaSessionBasedFilterTest 99 bgExecutor = FakeExecutor(FakeSystemClock()) in setUp() 100 filter = MediaSessionBasedFilter(context, mediaSessionManager, fgExecutor, bgExecutor) in setUp() 139 bgExecutor.runAllReady() in setUp() 160 bgExecutor.runAllReady() in noMediaSession_loadedEventNotFiltered() 169 bgExecutor.runAllReady() in noMediaSession_removedEventNotFiltered() 182 bgExecutor.runAllReady() in matchingMediaSession_loadedEventNotFiltered() 197 bgExecutor.runAllReady() in matchingMediaSession_removedEventNotFiltered() 212 bgExecutor.runAllReady() in remoteSession_loadedEventNotFiltered() 228 bgExecutor.runAllReady() in remoteAndLocalSessions_localLoadedEventFiltered() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeSuspendScreenStatePreventingAdapter.java | 33 DozeSuspendScreenStatePreventingAdapter(DozeMachine.Service inner, Executor bgExecutor) { in DozeSuspendScreenStatePreventingAdapter() argument 34 super(inner, bgExecutor); in DozeSuspendScreenStatePreventingAdapter() 50 DozeParameters params, Executor bgExecutor) { in wrapIfNeeded() argument 51 return isNeeded(params) ? new DozeSuspendScreenStatePreventingAdapter(inner, bgExecutor) in wrapIfNeeded()
|
D | DozeScreenStatePreventingAdapter.java | 33 DozeScreenStatePreventingAdapter(DozeMachine.Service inner, Executor bgExecutor) { in DozeScreenStatePreventingAdapter() argument 34 super(inner, bgExecutor); in DozeScreenStatePreventingAdapter() 52 DozeParameters params, Executor bgExecutor) { in wrapIfNeeded() argument 53 return isNeeded(params) ? new DozeScreenStatePreventingAdapter(inner, bgExecutor) : inner; in wrapIfNeeded()
|
D | DozeBrightnessHostForwarder.java | 29 Executor bgExecutor) { in DozeBrightnessHostForwarder() argument 30 super(wrappedService, bgExecutor); in DozeBrightnessHostForwarder()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/ |
D | UserCreatorTest.kt | 37 private lateinit var bgExecutor: FakeExecutor variable in com.android.systemui.user.UserCreatorTest 44 bgExecutor = FakeExecutor(FakeSystemClock()) in setUp() 45 userCreator = UserCreator(context, userManager, mainExecutor, bgExecutor) in setUp() 63 bgExecutor.runAllReady() in testCreateUser_threadingOrder() 67 bgExecutor.runAllReady() in testCreateUser_threadingOrder()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/flags/ |
D | RestartDozeListener.kt | 38 @Background val bgExecutor: DelayableExecutor, constant in com.android.systemui.flags.RestartDozeListener 68 bgExecutor.executeDelayed( in maybeRestartSleep() 85 bgExecutor.execute { settings.putBool(RESTART_SLEEP_KEY, sleeping) } in storeSleepState()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/models/player/ |
D | SeekBarViewModel.kt | 84 @Background private val bgExecutor: RepeatableExecutor, constant in com.android.systemui.media.controls.models.player.SeekBarViewModel 131 bgExecutor.execute { in <lambda>() 157 bgExecutor.execute { in onSeekStarting() 169 bgExecutor.execute { in onSeekProgress() 187 bgExecutor.execute { in onSeekFalse() 200 bgExecutor.execute { in onSeek() 271 bgExecutor.execute { in clearController() 282 bgExecutor.execute { in onDestroy() 308 bgExecutor.executeRepeatedly( in checkIfPollingNeeded()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/ |
D | StatefulControlSubscriber.kt | 34 private val bgExecutor: DelayableExecutor, constant in com.android.systemui.controls.controller.StatefulControlSubscriber 46 bgExecutor.execute { f() } in run() 87 bgExecutor.execute { in cancel()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/ |
D | UserCreator.kt | 41 @Background private val bgExecutor: Executor constant in com.android.systemui.user.UserCreator 60 bgExecutor.execute { in createUser() 69 bgExecutor.execute { in createUser()
|
/frameworks/base/core/java/android/service/remotelockscreenvalidation/ |
D | RemoteLockscreenValidationClient.java | 55 @Nullable Executor bgExecutor, @NonNull ComponentName serviceComponent) { in create() argument 56 return new RemoteLockscreenValidationClientImpl(context, bgExecutor, serviceComponent); in create()
|
D | RemoteLockscreenValidationClientImpl.java | 66 @Nullable Executor bgExecutor, in RemoteLockscreenValidationClientImpl() argument 71 mLifecycleExecutor = (bgExecutor == null) ? Runnable::run : bgExecutor; in RemoteLockscreenValidationClientImpl()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/appclips/ |
D | AppClipsViewModel.java | 66 @Background Executor bgExecutor) { in AppClipsViewModel() argument 70 mBgExecutor = bgExecutor; in AppClipsViewModel() 162 @Main Executor mainExecutor, @Background Executor bgExecutor) { in Factory() argument 166 mBgExecutor = bgExecutor; in Factory()
|
D | AppClipsTrampolineActivity.java | 109 @Background Executor bgExecutor, @Main Executor mainExecutor, in AppClipsTrampolineActivity() argument 115 mBgExecutor = bgExecutor; in AppClipsTrampolineActivity() 127 @Background Executor bgExecutor, @Main Executor mainExecutor, in AppClipsTrampolineActivity() argument 134 mBgExecutor = bgExecutor; in AppClipsTrampolineActivity()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/dagger/ |
D | DozeModule.java | 65 DozeHost dozeHost, DozeParameters dozeParameters, @UiBackground Executor bgExecutor) { in providesWrappedService() argument 67 wrappedService = new DozeBrightnessHostForwarder(wrappedService, dozeHost, bgExecutor); in providesWrappedService() 69 wrappedService, dozeParameters, bgExecutor); in providesWrappedService() 71 wrappedService, dozeParameters, bgExecutor); in providesWrappedService()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/dagger/ |
D | WalletModule.java | 63 @Background Executor bgExecutor) { in provideQuickAccessWalletClient() argument 64 return QuickAccessWalletClient.create(context, bgExecutor); in provideQuickAccessWalletClient()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/ |
D | ControlsUiControllerImplTest.kt | 103 private val bgExecutor = FakeExecutor(FakeSystemClock()) constant 135 bgExecutor, in setup() 217 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testPanelCallsTaskViewFactoryCreate() 237 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testSingleAppHeaderIsNotClickable() 265 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testMultipleAppHeaderIsClickable() 289 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testPanelControllerStartActivityWithCorrectArguments() 323 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testPendingIntentExtrasAreModified() 342 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testPendingIntentExtrasAreModified() 499 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in testOnRotationWithPanelUpdateBoundsCalled() 540 FakeExecutor.exhaustExecutors(uiExecutor, bgExecutor) in verifyPanelCreatedAndStartTaskView()
|
/frameworks/base/core/java/android/service/quickaccesswallet/ |
D | QuickAccessWalletClient.java | 56 static QuickAccessWalletClient create(@NonNull Context context, @Nullable Executor bgExecutor) { in create() argument 57 return new QuickAccessWalletClientImpl(context, bgExecutor); in create()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/broadcast/ |
D | BroadcastSender.kt | 24 @Background private val bgExecutor: Executor constant in com.android.systemui.broadcast.BroadcastSender 121 bgExecutor.execute { in sendInBackground()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/ |
D | DreamOverlayNotificationCountProvider.java | 83 @Background Executor bgExecutor) { in DreamOverlayNotificationCountProvider() argument 86 bgExecutor.execute(() -> { in DreamOverlayNotificationCountProvider()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/ |
D | MediaDeviceManager.kt | 66 @Background private val bgExecutor: Executor, in <lambda>() constant in com.android.systemui.media.controls.pipeline.MediaDeviceManager 179 bgExecutor.execute { in <lambda>() 195 bgExecutor.execute { in <lambda>() 237 bgExecutor.execute { updateCurrent() } in <lambda>() 240 bgExecutor.execute { updateCurrent() } in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScrollCaptureClient.java | 164 @Background Executor bgExecutor, @UiContext Context context) { in ScrollCaptureClient() argument 166 mBgExecutor = bgExecutor; in ScrollCaptureClient() 261 Rect boundsInWindow, float maxPages, Executor bgExecutor) 274 mBgExecutor = bgExecutor;
|
D | AssistContentRequester.java | 73 @Background Executor bgExecutor) { in AssistContentRequester() argument 77 mSystemInteractionExecutor = bgExecutor; in AssistContentRequester()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentInflater.java | 91 @Background Executor bgExecutor, in NotificationContentInflater() argument 99 mBgExecutor = bgExecutor; in NotificationContentInflater() 374 Executor bgExecutor, in apply() argument 405 applyRemoteView(bgExecutor, inflateSynchronously, result, reInflateFlags, flag, in apply() 432 applyRemoteView(bgExecutor, inflateSynchronously, result, reInflateFlags, flag, in apply() 460 applyRemoteView(bgExecutor, inflateSynchronously, result, reInflateFlags, flag, in apply() 487 applyRemoteView(bgExecutor, inflateSynchronously, result, reInflateFlags, flag, in apply() 509 Executor bgExecutor, in applyRemoteView() argument 613 bgExecutor, in applyRemoteView() 620 bgExecutor, in applyRemoteView() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/ |
D | AppOpsPrivacyItemMonitor.kt | 50 @Background private val bgExecutor: DelayableExecutor, in <lambda>() constant in com.android.systemui.privacy.AppOpsPrivacyItemMonitor 171 userTracker.addCallback(userTrackerCallback, bgExecutor) in <lambda>() 231 bgExecutor.execute { in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/regionsampling/ |
D | RegionSamplerTest.kt | 39 @Mock private lateinit var bgExecutor: Executor variable in com.android.systemui.shared.regionsampling.RegionSamplerTest 65 bgExecutor, in setUp() 78 bgExecutor, in setUp()
|