Searched refs:LAST_START_TIME (Results 1 – 4 of 4) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | TimerDAO.kt | 42 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()
|
D | TimerDAO.java | 53 private static final String LAST_START_TIME = "timer_start_time_"; field in TimerDAO 88 final long lastStartTime = prefs.getLong(LAST_START_TIME + id, Timer.UNUSED); in getTimers() 121 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime()); in addTimer() 146 editor.putLong(LAST_START_TIME + id, timer.getLastStartTime()); in updateTimer() 177 editor.remove(LAST_START_TIME + id); in removeTimer()
|
D | StopwatchDAO.kt | 30 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()
|
D | StopwatchDAO.java | 39 private static final String LAST_START_TIME = "sw_start_time"; field in StopwatchDAO 61 final long lastStartTime = prefs.getLong(LAST_START_TIME, Stopwatch.UNUSED); in getStopwatch() 82 .remove(LAST_START_TIME) in setStopwatch() 87 .putLong(LAST_START_TIME, stopwatch.getLastStartTime()) in setStopwatch()
|