Home
last modified time | relevance | path

Searched refs:postTimeMs (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationRecordLoggerTest.java225 long postTimeMs = Duration.ofMinutes(5).toMillis(); in testGetAgeInMinutes() local
227 int age = NotificationRecordLogger.getAgeInMinutes(postTimeMs, whenMs); in testGetAgeInMinutes()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecordLogger.java609 static int getAgeInMinutes(long postTimeMs, long whenMs) { in getAgeInMinutes() argument
610 return (int) Duration.ofMillis(postTimeMs - whenMs).toMinutes(); in getAgeInMinutes()