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.java108 Map<String, LinkedHashSet<String>> ungroupedNotificationsByUser in onNotificationPosted() local
110 if (ungroupedNotificationsByUser == null) { in onNotificationPosted()
111 ungroupedNotificationsByUser = new HashMap<>(); in onNotificationPosted()
113 mUngroupedNotifications.put(sbn.getUserId(), ungroupedNotificationsByUser); in onNotificationPosted() local
115 = ungroupedNotificationsByUser.get(sbn.getPackageName()); in onNotificationPosted()
121 ungroupedNotificationsByUser.put(sbn.getPackageName(), notificationsForPackage); in onNotificationPosted()
158 Map<String, LinkedHashSet<String>> ungroupedNotificationsByUser in maybeUngroup() local
160 if (ungroupedNotificationsByUser == null || ungroupedNotificationsByUser.size() == 0) { in maybeUngroup()
164 = ungroupedNotificationsByUser.get(sbn.getPackageName()); in maybeUngroup()
177 ungroupedNotificationsByUser.remove(sbn.getPackageName()); in maybeUngroup()