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

/frameworks/base/services/core/java/com/android/server/location/
H A DLocationFudger.java60 public static final long FASTEST_INTERVAL_MS = 10 * 60 * 1000; // 10 minutes field in class:LocationFudger
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java204 // same as mLastLocation, but is not updated faster than LocationFudger.FASTEST_INTERVAL_MS.
1540 if (sanitizedRequest.getInterval() < LocationFudger.FASTEST_INTERVAL_MS) {
1541 sanitizedRequest.setInterval(LocationFudger.FASTEST_INTERVAL_MS);
1543 if (sanitizedRequest.getFastestInterval() < LocationFudger.FASTEST_INTERVAL_MS) {
1544 sanitizedRequest.setFastestInterval(LocationFudger.FASTEST_INTERVAL_MS);
2193 if (timeDiffNanos > LocationFudger.FASTEST_INTERVAL_MS * NANOS_PER_MILLI) {

Completed in 238 milliseconds