HomeSort by relevance Sort by last modified time
    Searched defs:nowMs (Results 1 - 9 of 9) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
InputSmoother.java 51 final long nowMs = SystemClock.uptimeMillis();
54 if (last != null && nowMs - last.millis > MAX_SAMPLE_INTERVAL_MS) {
64 sample.millis = nowMs;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
TestLoadGenerator.cc 380 const int64_t nowMs = TickTime::MillisecondTimestamp();
381 if (nowMs < _frChangeTimeMs)
393 _frChangeTimeMs = nowMs + static_cast<int64_t>(1000.0 * factor *
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 322 long nowMs = -1;
325 nowMs = mTimeProvider.getCurrentTimeUs(
333 cue.mStartTimeMs + " <= " + nowMs + ", " +
337 cue.mStartTimeMs <= nowMs &&
338 // we don't trust nowMs, so check any cue since last callback
344 final long thenMs = nowMs;
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 535 long nowMs = System.currentTimeMillis();
541 writeEvent(nowMs, EVENT_TYPE_CLICK, r);
544 writeEvent(nowMs, EVENT_TYPE_REMOVE, r);
547 writeEvent(nowMs, EVENT_TYPE_DISMISS, r);
610 long nowMs = System.currentTimeMillis();
614 // Bucket by day by looking at 'floor((nowMs - eventTimeMs) / dayMs)'
615 "CAST(((" + nowMs + " - " + COL_EVENT_TIME + ") / " + DAY_MS + ") AS int) " +
659 long nowMs = System.currentTimeMillis();
661 nowMs - sLastPruneMs > PRUNE_MIN_DELAY_MS) {
663 sLastPruneMs = nowMs;
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiAutoJoinController.java     [all...]
WifiServiceImpl.java     [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ImageReaderSubPane.java 615 long nowMs = new Date().getTime();
621 long timestampMs = (nowMs * NS_PER_MS - nowBootTimeNs + timestamp) / NS_PER_MS;
  /art/runtime/hprof/
hprof.cc 653 uint64_t nowMs;
655 nowMs = 0;
657 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000;
661 U4_TO_BUF_BE(buf, 0, (uint32_t)(nowMs >> 32));
665 U4_TO_BUF_BE(buf, 0, (uint32_t)(nowMs & 0xffffffffULL));
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 355 milliseconds