Home
last modified time | relevance | path

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

/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/notificationmsg/
DNotificationMsgDelegate.java198 if (mNotificationInfos.containsKey(convoKey)) { in initializeNewConversation()
200 convoInfo = mNotificationInfos.get(convoKey); in initializeNewConversation()
205 mNotificationInfos.put(convoKey, convoInfo); in initializeNewConversation()
227 if (!mNotificationInfos.containsKey(convoKey)) { in initializeNewMessage()
238 ConversationNotificationInfo convoInfo = mNotificationInfos.get(convoKey); in initializeNewMessage()
246 ConversationNotificationInfo notificationInfo = mNotificationInfos.get(convoKey); in getAvatarIcon()
259 if (!Utils.isValidAvatarIconSync(iconSync) || !mNotificationInfos.containsKey(convoKey)) { in storeIcon()
263 if (mNotificationInfos.get(convoKey).isGroupConvo()) { in storeIcon()
289 String appPackageName = mNotificationInfos.get(convoKey).getAppPackageName(); in createNewMessage()
/packages/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java119 private LinkedList<HistoricalNotificationInfo> mNotificationInfos; field in NotificationStation
174 mNotificationInfos = new LinkedList<>(); in onAttach()
224 final int N = mNotificationInfos.size(); in populateNotifications()
232 getPrefContext(), mNotificationInfos.get(i), i)); in populateNotifications()
240 final int N = mNotificationInfos.size(); in markNotificationAsDismissed()
242 final HistoricalNotificationInfo info = mNotificationInfos.get(i); in markNotificationAsDismissed()
259 final int N = mNotificationInfos.size(); in addOrUpdateNotification()
261 final HistoricalNotificationInfo info = mNotificationInfos.get(i); in addOrUpdateNotification()
273 mNotificationInfos.addFirst(newInfo); in addOrUpdateNotification()
275 getPrefContext(), mNotificationInfos.peekFirst(), in addOrUpdateNotification()
[all …]
/packages/apps/Car/Messenger/src/com/android/car/messenger/
DMessageNotificationDelegate.java222 ConversationNotificationInfo notificationInfo = mNotificationInfos.get( in sendMessage()
261 ConversationNotificationInfo notificationInfo = mNotificationInfos.get(convoKey); in initializeNewMessage()
279 if (mNotificationInfos.containsKey(convoKey)) { in initializeNewConversation()
294 mNotificationInfos.put(convoKey, notiInfo); in initializeNewConversation()
348 if (mNotificationInfos.containsKey(convoKey)) { in addMessageFromIntent()
394 ConversationNotificationInfo notificationInfo = mNotificationInfos.get(conversationKey); in setGroupConversationTitle()
451 ConversationNotificationInfo notificationInfo = mNotificationInfos.get(conversationKey); in sendMessageInternal()
/packages/apps/Car/libs/car-messenger-common/src/com/android/car/messenger/common/
DBaseNotificationDelegate.java87 protected final Map<ConversationKey, ConversationNotificationInfo> mNotificationInfos = field in BaseNotificationDelegate
131 mNotificationInfos.entrySet().removeIf(entry -> predicate.test(entry.getKey())); in cleanupMessagesAndNotifications()
142 mNotificationInfos.forEach((conversationKey, notificationInfo) -> { in clearNotifications()
159 ConversationNotificationInfo info = mNotificationInfos.get(convoKey); in excludeFromNotification()
175 ConversationNotificationInfo notificationInfo = mNotificationInfos.get(convoKey); in addMessageToNotificationInfo()