Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DRankingBuilder.java50 private long mLastAudiblyAlertedMs = 0; field in RankingBuilder
79 mLastAudiblyAlertedMs = ranking.getLastAudiblyAlertedMillis(); in RankingBuilder()
108 mLastAudiblyAlertedMs, in build()
178 mLastAudiblyAlertedMs = lastAudiblyAlertedMs; in setLastAudiblyAlertedMs()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java1696 private long mLastAudiblyAlertedMs; field in NotificationListenerService.Ranking
1733 out.writeLong(mLastAudiblyAlertedMs); in writeToParcel()
1771 mLastAudiblyAlertedMs = in.readLong(); in Ranking()
1964 return mLastAudiblyAlertedMs; in getLastAudiblyAlertedMillis()
2052 mLastAudiblyAlertedMs = lastAudiblyAlertedMs; in populate()
2068 if (previous != null && previous.mLastAudiblyAlertedMs > 0
2069 && this.mLastAudiblyAlertedMs <= 0) {
2070 this.mLastAudiblyAlertedMs = previous.mLastAudiblyAlertedMs;
2093 other.mLastAudiblyAlertedMs, in populate()
2148 && Objects.equals(mLastAudiblyAlertedMs, other.mLastAudiblyAlertedMs) in equals()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java138 private long mLastAudiblyAlertedMs; field in NotificationRecord
1102 mLastAudiblyAlertedMs = audiblyAlerted ? System.currentTimeMillis() : -1; in setAudiblyAlerted()
1123 return mLastAudiblyAlertedMs; in getLastAudiblyAlertedMs()