Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/
H A DNetworkTimeUpdateService.java88 private final long mPollingIntervalMs; field in NetworkTimeUpdateService
110 mPollingIntervalMs = mContext.getResources().getInteger( in NetworkTimeUpdateService()
160 if (cachedNtpResult == null || cachedNtpResult.getAgeMillis() >= mPollingIntervalMs) { in onPollNetworkTimeUnderWakeLock()
166 if (cachedNtpResult != null && cachedNtpResult.getAgeMillis() < mPollingIntervalMs) { in onPollNetworkTimeUnderWakeLock()
168 resetAlarm(mPollingIntervalMs); in onPollNetworkTimeUnderWakeLock()
184 resetAlarm(mPollingIntervalMs); in onPollNetworkTimeUnderWakeLock()
278 TimeUtils.formatDuration(mPollingIntervalMs, pw); in dump()