Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/
H A DCarDrivingStateService.java296 long curTimestamp = value.getTimestamp(); in handlePropertyEventLocked() local
304 Slog.d(TAG, "Speed: " + curSpeed + "@" + curTimestamp); in handlePropertyEventLocked()
306 if (curTimestamp > mLastSpeedTimestamp) { in handlePropertyEventLocked()
307 mLastSpeedTimestamp = curTimestamp; in handlePropertyEventLocked()
319 Slog.d(TAG, "Gear: " + curGear + "@" + curTimestamp); in handlePropertyEventLocked()
321 if (curTimestamp > mLastGearTimestamp) { in handlePropertyEventLocked()
322 mLastGearTimestamp = curTimestamp; in handlePropertyEventLocked()
325 Slog.d(TAG, "Ignoring Gear with older timestamp:" + curTimestamp); in handlePropertyEventLocked()
333 if (curTimestamp > mLastParkingBrakeTimestamp) { in handlePropertyEventLocked()
334 mLastParkingBrakeTimestamp = curTimestamp; in handlePropertyEventLocked()
[all …]