Home
last modified time | relevance | path

Searched refs:nowMs (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/media/java/android/media/
DSubtitleTrack.java323 long nowMs = -1; in addCue() local
326 nowMs = mTimeProvider.getCurrentTimeUs( in addCue()
334 cue.mStartTimeMs + " <= " + nowMs + ", " + in addCue()
338 cue.mStartTimeMs <= nowMs && in addCue()
345 final long thenMs = nowMs; in addCue()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationUsageStats.java1062 long nowMs = System.currentTimeMillis(); in SQLiteLog()
1068 writeEvent(nowMs, EVENT_TYPE_CLICK, r); in SQLiteLog()
1071 writeEvent(nowMs, EVENT_TYPE_REMOVE, r); in SQLiteLog()
1074 writeEvent(nowMs, EVENT_TYPE_DISMISS, r); in SQLiteLog()
1222 long nowMs = System.currentTimeMillis(); in pruneIfNecessary() local
1224 nowMs - sLastPruneMs > PRUNE_MIN_DELAY_MS) { in pruneIfNecessary()
1226 sLastPruneMs = nowMs; in pruneIfNecessary()
1227 long horizonStartMs = nowMs - HORIZON_MS; in pruneIfNecessary()
/frameworks/base/services/net/java/android/net/apf/
DApfFilter.java155 final long nowMs = SystemClock.elapsedRealtime(); in logStats() local
157 mStats.durationMs = nowMs - mStart; in logStats()
162 logApfProgramEventLocked(nowMs / DateUtils.SECOND_IN_MILLIS); in logStats()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DWifiScanningServiceImpl.java2132 long nowMs = System.currentTimeMillis(); in dump() local
2140 } else if (nowMs < r.seen) { in dump()
2142 } else if (r.seen < nowMs - 1000000) { in dump()
2145 age = String.format("%3.3f", (nowMs - r.seen) / 1000.0); in dump()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DAccessPoint.java410 long nowMs = SystemClock.elapsedRealtime(); in evictOldScanResults() local
414 if (nowMs - result.timestamp / 1000 > MAX_SCAN_RESULT_AGE_MS) { in evictOldScanResults()