Home
last modified time | relevance | path

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

/device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/
DNotificationCenter.java166 Stopwatch stopwatch = dfuNotificationSnoozeWatch.get(device); in sendDfuNotificationImpl() local
167 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()
DBluetoothDeviceService.java676 Stopwatch stopwatch = mLastBatteryRefreshWatch.get(device); in getBatteryLevel() local
677 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()