Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java118 private final ArrayMap<String, NotificationEntry> mActiveNotifications = new ArrayMap<>(); field in NotificationEntryManager
282 NotificationEntry e = mActiveNotifications.get(key); in obtainVisibility()
290 final int count = mActiveNotifications.size(); in obtainVisibility()
363 final boolean isUpdateToInflatedNotif = mActiveNotifications.containsKey(sbn.getKey());
401 mActiveNotifications.put(entry.getKey(), entry); in addActiveNotification()
413 mActiveNotifications.put(entry.getKey(), entry); in addActiveNotificationForTest()
768 return mActiveNotifications.get(key); in getActiveNotificationUnfiltered()
779 return mActiveNotifications.get(key); in getPendingOrActiveNotif()
811 NotificationEntry removed = mActiveNotifications.remove(key); in removeVisibleNotification()
822 final int len = mActiveNotifications.size(); in getActiveNotificationsForCurrentUser()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java144 private ArrayList<NotificationEntry> mActiveNotifications; field in StatusBarNotificationActivityStarterTest
172 mActiveNotifications = new ArrayList<>(); in setUp()
173 mActiveNotifications.add(mNotificationRow.getEntry()); in setUp()
174 mActiveNotifications.add(mBubbleNotificationRow.getEntry()); in setUp()
175 when(mEntryManager.getVisibleNotifications()).thenReturn(mActiveNotifications); in setUp()