Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/
DLocationUsageLogger.java113 long expireIn = Math.max(0, expireAt - elapsedRealtime); in getBucketizedExpireIn() local
115 if (expireIn < 20 * ONE_SEC_IN_MILLIS) { in getBucketizedExpireIn()
117 } else if (expireIn < ONE_MINUTE_IN_MILLIS) { in getBucketizedExpireIn()
119 } else if (expireIn < ONE_MINUTE_IN_MILLIS * 10) { in getBucketizedExpireIn()
121 } else if (expireIn < ONE_HOUR_IN_MILLIS) { in getBucketizedExpireIn()
/frameworks/base/location/java/android/location/
DLocationRequest.java750 long expireIn = mExpireAt - SystemClock.elapsedRealtime(); in toString() local
752 TimeUtils.formatDuration(expireIn, s); in toString()