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

/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java1708 private static boolean shouldBroadcastSafe(Location loc, Location lastLoc, UpdateRecord record) { argument
1710 if (lastLoc == null) {
1716 if (loc.getTime() == lastLoc.getTime()) {
1723 if (loc.distanceTo(lastLoc) <= minDistance) {
1767 Location lastLoc = r.mLastFixBroadcast;
1768 if ((lastLoc == null) || shouldBroadcastSafe(location, lastLoc, r)) {
1769 if (lastLoc == null) {
1770 lastLoc = new Location(location);
1771 r.mLastFixBroadcast = lastLoc;
[all...]

Completed in 51 milliseconds