Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DSnoozeHelper.java91 private ArrayMap<String, NotificationRecord> mSnoozedNotifications = new ArrayMap<>(); field in SnoozeHelper
121 if ((mSnoozedNotifications.size() + numberToSnooze) > CONCURRENT_SNOOZE_LIMIT in canSnooze()
151 return mSnoozedNotifications.containsKey(key); in isSnoozed()
158 for (NotificationRecord r : mSnoozedNotifications.values()) { in getSnoozed()
172 for (int i = 0; i < mSnoozedNotifications.size(); i++) { in getNotifications()
173 NotificationRecord r = mSnoozedNotifications.valueAt(i); in getNotifications()
185 return mSnoozedNotifications.get(key); in getNotification()
194 snoozed.addAll(mSnoozedNotifications.values()); in getSnoozed()
233 mSnoozedNotifications.put(record.getKey(), record); in snooze()
247 mSnoozedNotifications.entrySet(); in cancel()
[all …]