Home
last modified time | relevance | path

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

/frameworks/base/services/people/java/com/android/server/people/data/
DDataManager.java780 private final Map<Pair<String, String>, Integer> mActiveNotifCounts = new ArrayMap<>(); field in DataManager.NotificationListener
794 mActiveNotifCounts.merge( in onNotificationPosted()
817 int count = mActiveNotifCounts.getOrDefault(conversationKey, 0) - 1; in onNotificationRemoved()
819 mActiveNotifCounts.remove(conversationKey); in onNotificationRemoved()
831 mActiveNotifCounts.put(conversationKey, count); in onNotificationRemoved()
886 for (Pair<String, String> conversationKey : mActiveNotifCounts.keySet()) { in cleanupCachedShortcuts()
904 return mActiveNotifCounts.containsKey(Pair.create(packageName, shortcutId)); in hasActiveNotifications()