Home
last modified time | relevance | path

Searched refs:nowMs (Results 1 – 3 of 3) 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/opt/net/wifi/service/java/com/android/server/wifi/
DWifiServiceImpl.java1489 long nowMs = System.currentTimeMillis(); in dump() local
1496 if (nowMs > r.seen && r.seen > 0) { in dump()
1497 ageSec = (nowMs - r.seen) / 1000; in dump()
1498 ageMilli = (nowMs - r.seen) % 1000; in dump()