Home
last modified time | relevance | path

Searched refs:bgExecutor (Results 1 – 25 of 70) sorted by relevance

123

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/pipeline/
DMediaSessionBasedFilterTest.kt71 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/
DDozeSuspendScreenStatePreventingAdapter.java33 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()
DDozeScreenStatePreventingAdapter.java33 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()
DDozeBrightnessHostForwarder.java29 Executor bgExecutor) { in DozeBrightnessHostForwarder() argument
30 super(wrappedService, bgExecutor); in DozeBrightnessHostForwarder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/
DUserCreatorTest.kt37 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/
DRestartDozeListener.kt38 @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/
DSeekBarViewModel.kt84 @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/
DStatefulControlSubscriber.kt34 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/
DUserCreator.kt41 @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/
DRemoteLockscreenValidationClient.java55 @Nullable Executor bgExecutor, @NonNull ComponentName serviceComponent) { in create() argument
56 return new RemoteLockscreenValidationClientImpl(context, bgExecutor, serviceComponent); in create()
DRemoteLockscreenValidationClientImpl.java66 @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/
DAppClipsViewModel.java66 @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()
DAppClipsTrampolineActivity.java109 @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/
DDozeModule.java65 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/
DWalletModule.java63 @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/
DControlsUiControllerImplTest.kt103 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/
DQuickAccessWalletClient.java56 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/
DBroadcastSender.kt24 @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/
DDreamOverlayNotificationCountProvider.java83 @Background Executor bgExecutor) { in DreamOverlayNotificationCountProvider() argument
86 bgExecutor.execute(() -> { in DreamOverlayNotificationCountProvider()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/
DMediaDeviceManager.kt66 @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/
DScrollCaptureClient.java164 @Background Executor bgExecutor, @UiContext Context context) { in ScrollCaptureClient() argument
166 mBgExecutor = bgExecutor; in ScrollCaptureClient()
261 Rect boundsInWindow, float maxPages, Executor bgExecutor)
274 mBgExecutor = bgExecutor;
DAssistContentRequester.java73 @Background Executor bgExecutor) { in AssistContentRequester() argument
77 mSystemInteractionExecutor = bgExecutor; in AssistContentRequester()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java91 @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/
DAppOpsPrivacyItemMonitor.kt50 @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/
DRegionSamplerTest.kt39 @Mock private lateinit var bgExecutor: Executor variable in com.android.systemui.shared.regionsampling.RegionSamplerTest
65 bgExecutor, in setUp()
78 bgExecutor, in setUp()

123