Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationHistoryDatabaseTest.java320 when(nh.removeConversationsFromWrite("pkg", Set.of("convo", "another"))).thenReturn(true); in testRemoveConversationRunnable()
326 verify(mDataBase.mBuffer).removeConversationsFromWrite("pkg",Set.of("convo", "another")); in testRemoveConversationRunnable()
328 verify(nh).removeConversationsFromWrite("pkg",Set.of("convo", "another")); in testRemoveConversationRunnable()
343 when(nh.removeConversationsFromWrite("pkg", Set.of("convo"))).thenReturn(false); in testRemoveConversationRunnable_noChanges()
349 verify(mDataBase.mBuffer).removeConversationsFromWrite("pkg", Set.of("convo")); in testRemoveConversationRunnable_noChanges()
351 verify(nh).removeConversationsFromWrite("pkg", Set.of("convo")); in testRemoveConversationRunnable_noChanges()
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryDatabase.java513 mBuffer.removeConversationsFromWrite(mPkg, mConversationIds); in run()
524 if (notificationHistory.removeConversationsFromWrite( in run()
/aosp12/frameworks/base/core/java/android/app/
H A DNotificationHistory.java388 public boolean removeConversationsFromWrite(String packageName, Set<String> conversationIds) { in removeConversationsFromWrite() method in NotificationHistory
/aosp12/frameworks/base/core/tests/coretests/src/android/app/
H A DNotificationHistoryTest.java323 history.removeConversationsFromWrite("pkg", Set.of("convo2", "convo4")); in testRemoveConversationNotificationFromWrite()