Searched refs:whenMs (Results 1 – 2 of 2) sorted by relevance
240 long whenMs = Duration.ofMinutes(2).toMillis(); in testGetAgeInMinutes() local241 int age = NotificationRecordLogger.getAgeInMinutes(postTimeMs, whenMs); in testGetAgeInMinutes()
615 static int getAgeInMinutes(long postTimeMs, long whenMs) { in getAgeInMinutes() argument616 return (int) Duration.ofMillis(postTimeMs - whenMs).toMinutes(); in getAgeInMinutes()