Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DForegroundServiceControllerTest.java44 private ForegroundServiceController fsc; field in ForegroundServiceControllerTest
48 fsc = new ForegroundServiceControllerImpl(mContext); in setUp()
61 assertFalse(fsc.removeNotification(sbn_user1_app3_fg)); in testNotificationCRUD()
62 assertFalse(fsc.removeNotification(sbn_user2_app2_fg)); in testNotificationCRUD()
63 assertFalse(fsc.removeNotification(sbn_user1_app1_fg)); in testNotificationCRUD()
64 assertFalse(fsc.removeNotification(sbn_user1_app1)); in testNotificationCRUD()
65 assertFalse(fsc.removeNotification(sbn_user2_app1)); in testNotificationCRUD()
67 fsc.addNotification(sbn_user1_app1_fg, NotificationManager.IMPORTANCE_DEFAULT); in testNotificationCRUD()
68 fsc.addNotification(sbn_user2_app2_fg, NotificationManager.IMPORTANCE_DEFAULT); in testNotificationCRUD()
69 fsc.addNotification(sbn_user1_app3_fg, NotificationManager.IMPORTANCE_DEFAULT); in testNotificationCRUD()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationData.java503 final ForegroundServiceController fsc = Dependency.get(ForegroundServiceController.class); in shouldFilterOut() local
504 if (fsc.isDungeonNotification(sbn) && !fsc.isDungeonNeededForUser(sbn.getUserId())) { in shouldFilterOut()