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.java75 mSnoozedNotifications = new ArrayMap<>(); field in SnoozeHelper
94 return mSnoozedNotifications.containsKey(userId) in isSnoozed()
95 && mSnoozedNotifications.get(userId).containsKey(pkg) in isSnoozed()
96 && mSnoozedNotifications.get(userId).get(pkg).containsKey(key); in isSnoozed()
100 if (mSnoozedNotifications.containsKey(userId) in getSnoozed()
101 && mSnoozedNotifications.get(userId).containsKey(pkg)) { in getSnoozed()
102 return mSnoozedNotifications.get(userId).get(pkg).values(); in getSnoozed()
114 mSnoozedNotifications.get(userIds.get(i)); in getSnoozed()
146 mSnoozedNotifications.get(userId); in snooze()
156 mSnoozedNotifications.put(userId, records); in snooze()
[all …]