Home
last modified time | relevance | path

Searched refs:mPostTime (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAlertingNotificationManager.java280 public long mPostTime; field in AlertingNotificationManager.AlertEntry
294 mPostTime = calculatePostTime(); in setEntry()
310 mPostTime = Math.max(mPostTime, currentTime); in updateEntry()
340 return (mPostTime < alertEntry.mPostTime) in compareTo()
341 ? 1 : ((mPostTime == alertEntry.mPostTime) in compareTo()
384 return mPostTime + mAutoDismissNotificationDecay; in calculateFinishTime()
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DAlertEntry.java30 private long mPostTime; field in AlertEntry
37 mPostTime = calculatePostTime(); in AlertEntry()
48 mPostTime = calculatePostTime(); in updatePostTime()
52 return mPostTime; in getPostTime()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DSbnBuilder.java44 private long mPostTime; field in SbnBuilder
60 mPostTime = source.getPostTime(); in SbnBuilder()
88 mPostTime); in build()
178 mPostTime = postTime; in setPostTime()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpManagerPhone.java195 return entry != null && mClock.currentTimeMillis() < entry.mPostTime; in shouldSwallowClick()
541 return mPostTime + getDecayDuration() + (extended ? mExtensionTime : 0); in calculateFinishTime()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java474 return mPostTime + getRecommendedHeadsUpTimeoutMs(mAutoDismissNotificationDecay); in calculateFinishTime()