Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/Messenger/src/com/android/car/messenger/core/util/
H A DVoiceUtil.java160 String conversationKey = conversation.getId(); in createTapToReadConversation() local
166 createServiceIntent(ACTION_REPLY, conversationKey, userAccountId); in createTapToReadConversation()
202 if (conversationKey != null) { in createServiceIntent()
203 bundle.putString(EXTRA_CONVERSATION_KEY, conversationKey); in createServiceIntent()
214 (conversationKey == null) ? action.hashCode() : conversationKey.hashCode(); in createServiceIntent()
236 final String conversationKey = intent.getStringExtra(EXTRA_CONVERSATION_KEY); in voiceReply() local
249 .replyConversation(accountId, conversationKey, message.toString()); in voiceReply()
257 final String conversationKey = extras.getString(EXTRA_CONVERSATION_KEY); in mute() local
259 AppFactory.get().getDataModel().muteConversation(conversationKey, true); in mute()
267 final String conversationKey = extras.getString(EXTRA_CONVERSATION_KEY); in markAsRead() local
[all …]
/aosp12/frameworks/base/services/people/java/com/android/server/people/data/
H A DDataManager.java1191 Pair<String, String> conversationKey = in onNotificationRemoved()
1194 int count = mActiveNotifCounts.getOrDefault(conversationKey, 0) - 1; in onNotificationRemoved()
1196 mActiveNotifCounts.remove(conversationKey); in onNotificationRemoved()
1199 mActiveNotifCounts.put(conversationKey, count); in onNotificationRemoved()