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.java249 HashMap<String, String> packageBubbles = mActiveShortcutBubbles.get( in maybeListenForShortcutChangesForBubbles() local
251 if (packageBubbles == null) { in maybeListenForShortcutChangesForBubbles()
252 packageBubbles = new HashMap<>(); in maybeListenForShortcutChangesForBubbles()
254 packageBubbles.put(shortcutId, r.getKey()); in maybeListenForShortcutChangesForBubbles()
255 mActiveShortcutBubbles.put(r.getSbn().getPackageName(), packageBubbles); in maybeListenForShortcutChangesForBubbles() local
262 HashMap<String, String> packageBubbles = mActiveShortcutBubbles.get( in maybeListenForShortcutChangesForBubbles() local
264 if (packageBubbles != null) { in maybeListenForShortcutChangesForBubbles()
266 packageBubbles.remove(shortcutId); in maybeListenForShortcutChangesForBubbles()
269 final Set<String> shortcutIds = new HashSet<>(packageBubbles.keySet()); in maybeListenForShortcutChangesForBubbles()
273 String entryKey = packageBubbles.get(pkgShortcutId); in maybeListenForShortcutChangesForBubbles()
[all …]