Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DGroupHelper.java62 LinkedHashSet<String> notificationsForPackage in onNotificationPosted() local
64 if (notificationsForPackage == null) { in onNotificationPosted()
65 notificationsForPackage = new LinkedHashSet<>(); in onNotificationPosted()
68 notificationsForPackage.add(sbn.getKey()); in onNotificationPosted()
69 ungroupedNotificationsByUser.put(sbn.getPackageName(), notificationsForPackage); in onNotificationPosted() local
71 if (notificationsForPackage.size() >= AUTOGROUP_AT_COUNT in onNotificationPosted()
73 notificationsToGroup.addAll(notificationsForPackage); in onNotificationPosted()
110 LinkedHashSet<String> notificationsForPackage in maybeUngroup() local
112 if (notificationsForPackage == null || notificationsForPackage.size() == 0) { in maybeUngroup()
115 if (notificationsForPackage.remove(sbn.getKey())) { in maybeUngroup()
[all …]