Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DGroupHelper.java57 Map<String, LinkedHashSet<String>> ungroupedNotificationsByUser in onNotificationPosted() local
59 if (ungroupedNotificationsByUser == null) { in onNotificationPosted()
60 ungroupedNotificationsByUser = new HashMap<>(); in onNotificationPosted()
62 mUngroupedNotifications.put(sbn.getUserId(), ungroupedNotificationsByUser); in onNotificationPosted() local
64 = ungroupedNotificationsByUser.get(sbn.getPackageName()); in onNotificationPosted()
70 ungroupedNotificationsByUser.put(sbn.getPackageName(), notificationsForPackage); in onNotificationPosted()
106 Map<String, LinkedHashSet<String>> ungroupedNotificationsByUser in maybeUngroup() local
108 if (ungroupedNotificationsByUser == null || ungroupedNotificationsByUser.size() == 0) { in maybeUngroup()
112 = ungroupedNotificationsByUser.get(sbn.getPackageName()); in maybeUngroup()
125 ungroupedNotificationsByUser.remove(sbn.getPackageName()); in maybeUngroup()