Home
last modified time | relevance | path

Searched refs:getPostedTimeMs (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/app/
DNotificationHistory.java78 public long getPostedTimeMs() { in getPostedTimeMs() method in NotificationHistory.HistoricalNotification
128 getPostedTimeMs() == that.getPostedTimeMs() && in equals()
142 getPostedTimeMs(), getTitle(), getText(), getIcon(), getConversationId()); in hashCode()
349 (o1, o2) -> -1 * Long.compare(o1.getPostedTimeMs(), o2.getPostedTimeMs())); in addNotificationsToWrite()
373 && postedTime == hn.getPostedTimeMs()) { in removeNotificationFromWrite()
497 p.writeLong(notification.getPostedTimeMs()); in writeNotificationToParcel()
/frameworks/base/core/tests/coretests/src/android/app/
DNotificationHistoryTest.java112 assertThat(n.getPostedTimeMs()).isEqualTo(expectedPostTime); in testHistoricalNotificationBuilder()
272 if (987654323 != n.getPostedTimeMs()) { in testRemoveNotificationFromWrite()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationHistoryProtoHelper.java298 proto.write(Notification.POSTED_TIME_MS, notification.getPostedTimeMs()); in writeNotification()