Searched refs:removeConversationsFromWrite (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationHistoryDatabaseTest.java | 305 when(nh.removeConversationsFromWrite("pkg", Set.of("convo", "another"))).thenReturn(true); in testRemoveConversationRunnable() 311 verify(mDataBase.mBuffer).removeConversationsFromWrite("pkg",Set.of("convo", "another")); in testRemoveConversationRunnable() 313 verify(nh).removeConversationsFromWrite("pkg",Set.of("convo", "another")); in testRemoveConversationRunnable() 328 when(nh.removeConversationsFromWrite("pkg", Set.of("convo"))).thenReturn(false); in testRemoveConversationRunnable_noChanges() 334 verify(mDataBase.mBuffer).removeConversationsFromWrite("pkg", Set.of("convo")); in testRemoveConversationRunnable_noChanges() 336 verify(nh).removeConversationsFromWrite("pkg", Set.of("convo")); in testRemoveConversationRunnable_noChanges()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationHistoryDatabase.java | 448 mBuffer.removeConversationsFromWrite(mPkg, mConversationIds); in run() 459 if (notificationHistory.removeConversationsFromWrite( in run()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | NotificationHistoryTest.java | 330 history.removeConversationsFromWrite("pkg", Set.of("convo2", "convo4")); in testRemoveConversationNotificationFromWrite()
|
/frameworks/base/core/java/android/app/ |
D | NotificationHistory.java | 388 public boolean removeConversationsFromWrite(String packageName, Set<String> conversationIds) { in removeConversationsFromWrite() method in NotificationHistory
|