Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleData.java196 private final HashMap<String, Bubble> mPendingBubbles; field in BubbleData
244 mPendingBubbles = new HashMap<>(); in BubbleData()
401 } else if (mPendingBubbles.containsKey(key)) { in getOrCreateBubble()
403 bubbleToReturn = mPendingBubbles.get(key); in getOrCreateBubble()
417 mPendingBubbles.put(key, bubbleToReturn); in getOrCreateBubble()
430 mPendingBubbles.remove(bubble.getKey()); // No longer pending once we're here in notificationEntryUpdated()
650 if (mPendingBubbles.containsKey(key)) { in doRemove()
651 mPendingBubbles.remove(key); in doRemove()
1175 for (Bubble b : mPendingBubbles.values()) { in getPendingBubbleWithKey()
1189 for (Bubble b : mPendingBubbles.values()) { in filterAllBubbles()