Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java222 @Nullable Location locationB) { in chooseBestLocation() argument
224 return locationB; in chooseBestLocation()
226 if (locationB == null) { in chooseBestLocation()
231 > locationB.getElapsedRealtimeNanos() + MAX_LOCATION_COMPARISON_NS) { in chooseBestLocation()
234 if (locationB.getElapsedRealtimeNanos() in chooseBestLocation()
236 return locationB; in chooseBestLocation()
240 return locationB; in chooseBestLocation()
242 if (!locationB.hasAccuracy()) { in chooseBestLocation()
245 return locationA.getAccuracy() < locationB.getAccuracy() ? locationA : locationB; in chooseBestLocation()