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.java82 protected final HashMap<String, NotificationEntry> mPendingNotifications = new HashMap<>(); field in NotificationEntryManager
105 if (mPendingNotifications.size() == 0) { in dump()
108 for (NotificationEntry entry : mPendingNotifications.values()) { in dump()
205 if (mPendingNotifications.containsKey(key)) { in abortExistingInflation()
206 NotificationEntry entry = mPendingNotifications.get(key); in abortExistingInflation()
208 mPendingNotifications.remove(key); in abortExistingInflation()
235 mPendingNotifications.remove(entry.key); in onAsyncInflationFinished()
286 NotificationEntry pendingEntry = mPendingNotifications.get(key); in removeNotificationInternal()
402 mPendingNotifications.put(key, entry); in addNotificationInternal()
476 entries.addAll(mPendingNotifications.values()); in updateNotificationRanking()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java446 mEntryManager.mPendingNotifications.put(mEntry.key, mEntry); in testUpdateNotificationRanking_pendingNotification()