Searched defs:mNtpTime (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DSntpClient.java58 private long mNtpTime; field in class:SntpClient
60 // value of SystemClock.elapsedRealtime() corresponding to mNtpTime
119 mNtpTime = responseTime + clockOffset;
140 return mNtpTime;
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java252 private final NtpTrustedTime mNtpTime; field in class:GpsLocationProvider
386 mNtpTime = NtpTrustedTime.getInstance(context);
563 if (mNtpTime.getCacheAge() >= NTP_INTERVAL) {
564 mNtpTime.forceRefresh();
568 if (mNtpTime.getCacheAge() < NTP_INTERVAL) {
569 long time = mNtpTime.getCachedNtpTime();
570 long timeReference = mNtpTime.getCachedNtpTimeReference();
571 long certainty = mNtpTime.getCacheCertainty();

Completed in 938 milliseconds