Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationRecordLoggerTest.java240 long whenMs = Duration.ofMinutes(2).toMillis(); in testGetAgeInMinutes() local
241 int age = NotificationRecordLogger.getAgeInMinutes(postTimeMs, whenMs); in testGetAgeInMinutes()
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecordLogger.java615 static int getAgeInMinutes(long postTimeMs, long whenMs) { in getAgeInMinutes() argument
616 return (int) Duration.ofMillis(postTimeMs - whenMs).toMinutes(); in getAgeInMinutes()