Searched defs:headsUpEntry (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java187 HeadsUpEntry headsUpEntry = mHeadsUpEntries.get(headsUp.key);
188 if (headsUpEntry == null) {
193 headsUpEntry.updateEntry();
194 setEntryPinned(headsUpEntry, shouldHeadsUpBecomePinned(headsUp));
199 HeadsUpEntry headsUpEntry = mEntryPool.acquire();
202 headsUpEntry.setEntry(entry);
203 mHeadsUpEntries.put(entry.key, headsUpEntry);
205 setEntryPinned(headsUpEntry, shouldHeadsUpBecomePinned(entry));
220 private void setEntryPinned(HeadsUpEntry headsUpEntry, boolean isPinned) { argument
221 ExpandableNotificationRow row = headsUpEntry
[all...]

Completed in 6 milliseconds