Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/
DRankingBuilder.java52 private long mLastAudiblyAlertedMs = 0; field in RankingBuilder
83 mLastAudiblyAlertedMs = ranking.getLastAudiblyAlertedMillis(); in RankingBuilder()
114 mLastAudiblyAlertedMs, in build()
186 mLastAudiblyAlertedMs = lastAudiblyAlertedMs; in setLastAudiblyAlertedMs()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java1760 private long mLastAudiblyAlertedMs; field in NotificationListenerService.Ranking
1802 out.writeLong(mLastAudiblyAlertedMs); in writeToParcel()
1842 mLastAudiblyAlertedMs = in.readLong(); in Ranking()
2078 return mLastAudiblyAlertedMs; in getLastAudiblyAlertedMillis()
2167 mLastAudiblyAlertedMs = lastAudiblyAlertedMs; in populate()
2185 if (previous != null && previous.mLastAudiblyAlertedMs > 0
2186 && this.mLastAudiblyAlertedMs <= 0) {
2187 this.mLastAudiblyAlertedMs = previous.mLastAudiblyAlertedMs;
2210 other.mLastAudiblyAlertedMs, in populate()
2267 && Objects.equals(mLastAudiblyAlertedMs, other.mLastAudiblyAlertedMs) in equals()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java150 private long mLastAudiblyAlertedMs; field in NotificationRecord
1235 mLastAudiblyAlertedMs = audiblyAlerted ? System.currentTimeMillis() : -1; in setAudiblyAlerted()
1260 return mLastAudiblyAlertedMs; in getLastAudiblyAlertedMs()