Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimerDAO.kt45 private const val LAST_WALL_CLOCK_TIME = "timer_wall_clock_time_" constant
77 val lastWallClockTime: Long = prefs.getLong(LAST_WALL_CLOCK_TIME + id, Timer.UNUSED) in getTimers()
110 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.lastWallClockTime) in addTimer()
136 editor.putLong(LAST_WALL_CLOCK_TIME + id, timer.lastWallClockTime) in updateTimer()
167 editor.remove(LAST_WALL_CLOCK_TIME + id) in removeTimer()
DStopwatchDAO.kt33 private const val LAST_WALL_CLOCK_TIME = "sw_wall_clock_time" constant
51 val lastWallClockTime: Long = prefs.getLong(LAST_WALL_CLOCK_TIME, Stopwatch.UNUSED) in getStopwatch()
72 .remove(LAST_WALL_CLOCK_TIME) in setStopwatch()
77 .putLong(LAST_WALL_CLOCK_TIME, stopwatch.lastWallClockTime) in setStopwatch()