Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/location/
DLocationFudger.java60 public static final long FASTEST_INTERVAL_MS = 10 * 60 * 1000; // 10 minutes field in LocationFudger
/frameworks/base/services/core/java/com/android/server/
DLocationManagerService.java2464 if (sanitizedRequest.getInterval() < LocationFudger.FASTEST_INTERVAL_MS) { in createSanitizedRequest()
2465 sanitizedRequest.setInterval(LocationFudger.FASTEST_INTERVAL_MS); in createSanitizedRequest()
2467 if (sanitizedRequest.getFastestInterval() < LocationFudger.FASTEST_INTERVAL_MS) { in createSanitizedRequest()
2468 sanitizedRequest.setFastestInterval(LocationFudger.FASTEST_INTERVAL_MS); in createSanitizedRequest()
3321 if (timeDiffNanos > LocationFudger.FASTEST_INTERVAL_MS * NANOS_PER_MILLI) { in handleLocationChangedLocked()