Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimerDAO.kt42 private const val LAST_START_TIME = "timer_start_time_" constant
76 val lastStartTime: Long = prefs.getLong(LAST_START_TIME + id, Timer.UNUSED) in getTimers()
109 editor.putLong(LAST_START_TIME + id, timer.lastStartTime) in addTimer()
135 editor.putLong(LAST_START_TIME + id, timer.lastStartTime) in updateTimer()
166 editor.remove(LAST_START_TIME + id) in removeTimer()
DStopwatchDAO.kt30 private const val LAST_START_TIME = "sw_start_time" constant
50 val lastStartTime: Long = prefs.getLong(LAST_START_TIME, Stopwatch.UNUSED) in getStopwatch()
71 .remove(LAST_START_TIME) in setStopwatch()
76 .putLong(LAST_START_TIME, stopwatch.lastStartTime) in setStopwatch()