Home
last modified time | relevance | path

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

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DExifInterfaceTest.java92 public final boolean hasLatLong; field in ExifInterfaceTest.ExpectedValue
135 hasLatLong = typedArray.getBoolean(3, false); in ExpectedValue()
280 assertEquals(expectedValue.hasLatLong, exifInterface.getLatLong(latLong)); in compareWithExpectedValue()
281 if (expectedValue.hasLatLong) { in compareWithExpectedValue()
/frameworks/base/services/core/java/com/android/server/location/gnss/
DGnssLocationProvider.java1367 private void reportLocation(boolean hasLatLong, Location location) { in reportLocation() argument
1368 sendMessage(REPORT_LOCATION, hasLatLong ? 1 : 0, location); in reportLocation()
1371 private void handleReportLocation(boolean hasLatLong, Location location) { in handleReportLocation() argument
1392 mGnssMetrics.logReceivedLocationStatus(hasLatLong); in handleReportLocation()
1393 if (hasLatLong) { in handleReportLocation()
1421 if (mTimeToFirstFix == 0 && hasLatLong) { in handleReportLocation()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp275 bool hasLatLong(const GnssLocation_V1_0& location) { in hasLatLong() function
281 bool hasLatLong(const GnssLocation_V2_0& location) { in hasLatLong() function
282 return hasLatLong(location.v1_0); in hasLatLong()
750 boolToJbool(hasLatLong(location)), in gnssLocationCbImpl()