Home
last modified time | relevance | path

Searched refs:mForegroundServiceController (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DForegroundServiceNotificationListener.java45 private final ForegroundServiceController mForegroundServiceController; field in ForegroundServiceNotificationListener
55 mForegroundServiceController = foregroundServiceController; in ForegroundServiceNotificationListener()
110 mForegroundServiceController.updateUserState( in removeNotification()
115 if (mForegroundServiceController.isDisclosureNotification(sbn)) { in removeNotification()
145 mForegroundServiceController.updateUserState( in updateNotification()
148 if (mForegroundServiceController.isDisclosureNotification(sbn)) { in updateNotification()
DDependency.java290 @Inject Lazy<ForegroundServiceController> mForegroundServiceController; field in Dependency
479 mProviders.put(ForegroundServiceController.class, mForegroundServiceController::get); in start()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DAppOpsCoordinator.java54 private final ForegroundServiceController mForegroundServiceController; field in AppOpsCoordinator
65 mForegroundServiceController = foregroundServiceController; in AppOpsCoordinator()
93 if (mForegroundServiceController.isDisclosureNotification(sbn)
94 && !mForegroundServiceController.isDisclosureNeededForUser(
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationFilter.java49 private final ForegroundServiceController mForegroundServiceController; field in NotificationFilter
62 mForegroundServiceController = foregroundServiceController; in NotificationFilter()
100 if (mForegroundServiceController.isDisclosureNotification(sbn) in shouldFilterOut()
101 && !mForegroundServiceController.isDisclosureNeededForUser(sbn.getUserId())) { in shouldFilterOut()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DAppOpsCoordinatorTest.java64 @Mock private ForegroundServiceController mForegroundServiceController; field in AppOpsCoordinatorTest
83 mForegroundServiceController, in setup()
106 when(mForegroundServiceController.isDisclosureNotification(sbn)).thenReturn(true); in filterTest_disclosureUnnecessary()
109 when(mForegroundServiceController.isDisclosureNeededForUser(sbn.getUserId())) in filterTest_disclosureUnnecessary()