Searched refs:removeNotificationFromWrite (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationHistoryDatabaseTest.java | 259 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/ |
D | NotificationHistoryDatabase.java | 405 mBuffer.removeNotificationFromWrite(mPkg, mPostedTime); in run() 416 if(notificationHistory.removeNotificationFromWrite(mPkg, mPostedTime)) { in run()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | NotificationHistoryTest.java | 291 history.removeNotificationFromWrite("pkg", 987654323); in testRemoveNotificationFromWrite()
|
/frameworks/base/core/java/android/app/ |
D | NotificationHistory.java | 368 public boolean removeNotificationFromWrite(String packageName, long postedTime) { in removeNotificationFromWrite() method in NotificationHistory
|