Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DShortcutHelper.java239 HashMap<String, String> packageBubbles = mActiveShortcutBubbles.get( in maybeListenForShortcutChangesForBubbles() local
241 if (packageBubbles == null) { in maybeListenForShortcutChangesForBubbles()
242 packageBubbles = new HashMap<>(); in maybeListenForShortcutChangesForBubbles()
244 packageBubbles.put(shortcutId, r.getKey()); in maybeListenForShortcutChangesForBubbles()
245 mActiveShortcutBubbles.put(r.getSbn().getPackageName(), packageBubbles); in maybeListenForShortcutChangesForBubbles() local
252 HashMap<String, String> packageBubbles = mActiveShortcutBubbles.get( in maybeListenForShortcutChangesForBubbles() local
254 if (packageBubbles != null) { in maybeListenForShortcutChangesForBubbles()
256 packageBubbles.remove(shortcutId); in maybeListenForShortcutChangesForBubbles()
259 final Set<String> shortcutIds = new HashSet<>(packageBubbles.keySet()); in maybeListenForShortcutChangesForBubbles()
263 String entryKey = packageBubbles.get(pkgShortcutId); in maybeListenForShortcutChangesForBubbles()
[all …]