Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java113 protected final HashMap<String, NotificationEntry> mPendingNotifications = new HashMap<>(); field in NotificationEntryManager
165 if (mPendingNotifications.size() == 0) { in dump()
168 for (NotificationEntry entry : mPendingNotifications.values()) { in dump()
297 if (mPendingNotifications.containsKey(key)) { in abortExistingInflation()
298 NotificationEntry entry = mPendingNotifications.get(key); in abortExistingInflation()
300 mPendingNotifications.remove(key); in abortExistingInflation()
336 mPendingNotifications.remove(entry.getKey());
448 NotificationEntry pendingEntry = mPendingNotifications.get(key); in removeNotificationInternal()
569 NotificationEntry entry = mPendingNotifications.get(key); in addNotificationInternal()
599 mPendingNotifications.put(key, entry); in addNotificationInternal()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java370 mEntryManager.mPendingNotifications.put(mEntry.getKey(), mEntry); in testUpdateNotificationRanking_pendingNotification()