Home
last modified time | relevance | path

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

/packages/apps/Car/Messenger/src/com/android/car/messenger/core/util/
DVoiceUtil.java161 String conversationKey = conversation.getId(); in createTapToReadConversation() local
167 createServiceIntent(ACTION_REPLY, conversationKey, userAccountId); in createTapToReadConversation()
181 createServiceIntent(ACTION_MARK_AS_READ, conversationKey, userAccountId); in createTapToReadConversation()
194 PendingIntent muteIntent = createServiceIntent(ACTION_MUTE, conversationKey, userAccountId); in createTapToReadConversation()
214 @NonNull String action, @Nullable String conversationKey, int userAccountId) { in createServiceIntent() argument
217 if (conversationKey != null) { in createServiceIntent()
218 bundle.putString(EXTRA_CONVERSATION_KEY, conversationKey); in createServiceIntent()
229 (conversationKey == null) ? action.hashCode() : conversationKey.hashCode(); in createServiceIntent()
254 final String conversationKey = intent.getStringExtra(EXTRA_CONVERSATION_KEY); in voiceReply() local
267 .replyConversation(accountId, conversationKey, message.toString()); in voiceReply()
[all …]
/packages/apps/Car/libs/car-messenger-common/src/com/android/car/messenger/common/
DBaseNotificationDelegate.java143 mNotificationInfos.forEach((conversationKey, notificationInfo) -> { in clearNotifications() argument
144 if (predicate.test(conversationKey)) { in clearNotifications()
187 protected void postNotification(ConversationKey conversationKey, in postNotification() argument
190 boolean newNotification = !mNotificationBuilders.containsKey(conversationKey); in postNotification()
194 conversationKey); in postNotification()
266 PendingIntent deleteIntent = createServiceIntent(conversationKey, in postNotification()
271 List<Action> actions = buildNotificationActions(conversationKey, in postNotification()
279 mNotificationBuilders.put(conversationKey, builder); in postNotification()
288 private List<Action> buildNotificationActions(ConversationKey conversationKey, in buildNotificationActions() argument
295 if (shouldAddReplyAction(conversationKey.getDeviceId())) { in buildNotificationActions()
[all …]