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.java53 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()
DStopwatchDAO.java39 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()