Home
last modified time | relevance | path

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

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationHistoryDatabaseTest.java259 when(nh.removeNotificationFromWrite("pkg", 123)).thenReturn(true); in testRemoveNotificationRunnable()
265 verify(mDataBase.mBuffer).removeNotificationFromWrite("pkg", 123); in testRemoveNotificationRunnable()
267 verify(nh).removeNotificationFromWrite("pkg", 123); in testRemoveNotificationRunnable()
282 when(nh.removeNotificationFromWrite("pkg", 123)).thenReturn(false); in testRemoveNotificationRunnable_noChanges()
288 verify(mDataBase.mBuffer).removeNotificationFromWrite("pkg", 123); in testRemoveNotificationRunnable_noChanges()
290 verify(nh).removeNotificationFromWrite("pkg", 123); in testRemoveNotificationRunnable_noChanges()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationHistoryDatabase.java405 mBuffer.removeNotificationFromWrite(mPkg, mPostedTime); in run()
416 if(notificationHistory.removeNotificationFromWrite(mPkg, mPostedTime)) { in run()
/frameworks/base/core/tests/coretests/src/android/app/
DNotificationHistoryTest.java291 history.removeNotificationFromWrite("pkg", 987654323); in testRemoveNotificationFromWrite()
/frameworks/base/core/java/android/app/
DNotificationHistory.java368 public boolean removeNotificationFromWrite(String packageName, long postedTime) { in removeNotificationFromWrite() method in NotificationHistory