Searched refs:ntpResult (Results 1 – 3 of 3) sorted by relevance
150 NtpTrustedTime.TimeResult ntpResult = mNtpTime.getCachedTimeResult(); in blockingGetNtpTimeAndInject() local151 if (ntpResult == null || ntpResult.getAgeMillis() >= NTP_INTERVAL) { in blockingGetNtpTimeAndInject()161 ntpResult = mNtpTime.getCachedTimeResult(); in blockingGetNtpTimeAndInject()162 if (ntpResult != null && ntpResult.getAgeMillis() < NTP_INTERVAL) { in blockingGetNtpTimeAndInject()163 long time = ntpResult.getTimeMillis(); in blockingGetNtpTimeAndInject()164 long timeReference = ntpResult.getElapsedRealtimeMillis(); in blockingGetNtpTimeAndInject()165 long certainty = ntpResult.getCertaintyMillis(); in blockingGetNtpTimeAndInject()171 + " ntpResult: " + ntpResult in blockingGetNtpTimeAndInject()
281 NtpTrustedTime.TimeResult ntpResult = mTime.getCachedTimeResult(); in dump() local282 pw.println("NTP cache result: " + ntpResult); in dump()283 if (ntpResult != null) { in dump()284 pw.println("NTP result age: " + ntpResult.getAgeMillis()); in dump()
2191 NtpTrustedTime.TimeResult ntpResult = time.getCachedTimeResult();2192 if (ntpResult != null) {2193 return ntpResult.currentTimeMillis();