Searched refs:stopwatch (Results 1 – 2 of 2) sorted by relevance
166 Stopwatch stopwatch = dfuNotificationSnoozeWatch.get(device); in sendDfuNotificationImpl() local167 if (stopwatch != null && in sendDfuNotificationImpl()168 stopwatch.elapsed(TimeUnit.MILLISECONDS) < REMOTE_UPDATE_SNOOZE_PERIOD) { in sendDfuNotificationImpl()172 if (stopwatch == null) { in sendDfuNotificationImpl()173 stopwatch = Stopwatch.createStarted(ticker); in sendDfuNotificationImpl()174 dfuNotificationSnoozeWatch.put(device, stopwatch); in sendDfuNotificationImpl()177 stopwatch.reset(); in sendDfuNotificationImpl()178 stopwatch.start(); in sendDfuNotificationImpl()
676 Stopwatch stopwatch = mLastBatteryRefreshWatch.get(device); in getBatteryLevel() local677 if (stopwatch != null && in getBatteryLevel()678 stopwatch.elapsed(TimeUnit.MILLISECONDS) > BATTERY_VALIDITY_PERIOD_MS) { in getBatteryLevel()679 stopwatch.reset(); in getBatteryLevel()680 stopwatch.start(); in getBatteryLevel()724 Stopwatch stopwatch = Stopwatch.createStarted(ticker); in initializeDeviceBatteryLevelRead()725 mLastBatteryRefreshWatch.put(device, stopwatch); in initializeDeviceBatteryLevelRead()