Searched refs:removeNotification (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ |
D | ForegroundServiceControllerTest.java | 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() 74 assertFalse(fsc.removeNotification(sbn_user1_app1)); in testNotificationCRUD() 75 assertFalse(fsc.removeNotification(sbn_user2_app1)); in testNotificationCRUD() 80 assertFalse(fsc.removeNotification(sbn_user1_app1)); in testNotificationCRUD() 81 assertFalse(fsc.removeNotification(sbn_user2_app1)); in testNotificationCRUD() 87 assertTrue(fsc.removeNotification(sbn_user1_app3_fg)); in testNotificationCRUD() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ForegroundServiceControllerImpl.java | 61 public boolean removeNotification(StatusBarNotification sbn) { in removeNotification() method in ForegroundServiceControllerImpl 79 return userServices.removeNotification(sbn.getPackageName(), sbn.getKey()); in removeNotification() 100 userServices.removeNotification(sbn.getPackageName(), sbn.getKey()); in updateNotification() 131 public boolean removeNotification(String pkg, String key) { in removeNotification() method in ForegroundServiceControllerImpl.UserServices
|
D | ForegroundServiceController.java | 35 boolean removeNotification(StatusBarNotification sbn); in removeNotification() method
|
/frameworks/base/core/java/android/app/ |
D | Service.java | 713 public final void stopForeground(boolean removeNotification) { in stopForeground() argument 714 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : 0); in stopForeground()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBar.java | 1420 removeNotification(rowToRemove.getEntry().key, null); in clearAllNotifications() 1493 removeNotification(entry.key, null); in startKeyguard() 1501 removeNotification(entry.key, null); in startKeyguard() 1671 public void removeNotification(String key, RankingMap ranking) { in removeNotification() method 1682 deferRemoval = !mHeadsUpManager.removeNotification(key, ignoreEarliestRemovalTime); in removeNotification() 1746 mForegroundServiceController.removeNotification(entry.notification); in removeNotification() 1827 removeNotification(n.getKey(), null); in performRemoveNotification() 2697 removeNotification(entry.key, mLatestRankingMap); in onHeadsUpStateChanged() 2717 mHeadsUpManager.removeNotification(key, false /* ignoreEarliestRemovalTime */); in updateHeadsUp() 2765 removeNotification(entry.key, mLatestRankingMap); in removeRemoteInputEntriesKeptUntilCollapsed() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | HeadsUpManager.java | 281 public boolean removeNotification(String key, boolean ignoreEarliestRemovalTime) { in removeNotification() method in HeadsUpManager
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ExpandableNotificationRow.java | 485 mChildrenContainer.removeNotification(row); 912 mChildrenContainer.removeNotification(row);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationChildrenContainer.java | 251 public void removeNotification(ExpandableNotificationRow row) {
|