Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/src/com/android/settings/slices/
H A DSliceBackgroundWorker.java194 private final Map<Uri, Long> mLastUpdateTimeLookup = Collections.synchronizedMap( field in SliceBackgroundWorker.NotifySliceChangeHandler
220 mLastUpdateTimeLookup.put(uri, SystemClock.uptimeMillis()); in handleMessage()
230 final long lastUpdateTime = mLastUpdateTimeLookup.getOrDefault(worker.getUri(), 0L); in updateSlice()
245 mLastUpdateTimeLookup.remove(worker.getUri()); in cancelSliceUpdate()
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/qc/
H A DSettingsQCBackgroundWorker.java171 private final Map<Uri, Long> mLastUpdateTimeLookup = Collections.synchronizedMap( field in SettingsQCBackgroundWorker.NotifyQCItemChangeHandler
197 mLastUpdateTimeLookup.put(uri, SystemClock.uptimeMillis()); in handleMessage()
207 long lastUpdateTime = mLastUpdateTimeLookup.getOrDefault(worker.getUri(), 0L); in updateQCItem()
222 mLastUpdateTimeLookup.remove(worker.getUri()); in cancelQCItemUpdate()