Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DLocationManagerProxy.java56 public Location getLastKnownLocation(@NonNull String provider) { in getLastKnownLocation() method in LocationManagerProxy
60 return mLocationManager.getLastKnownLocation(provider); in getLastKnownLocation()
DCarLocationService.java305 location = mILocationManagerProxy.getLastKnownLocation( in storeLocation()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DLocationManagerProxyTest.java66 when(mMockLocationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER)) in testLocationManagerProxyCanGetLastKnownLocation()
69 .getLastKnownLocation(LocationManager.GPS_PROVIDER); in testLocationManagerProxyCanGetLastKnownLocation()
DCarLocationServiceTest.java332 when(mMockLocationManagerProxy.getLastKnownLocation(LocationManager.GPS_PROVIDER)) in testStoresLocationUponShutdownPrepare()
339 verify(mMockLocationManagerProxy).getLastKnownLocation(LocationManager.GPS_PROVIDER); in testStoresLocationUponShutdownPrepare()
378 when(mMockLocationManagerProxy.getLastKnownLocation(LocationManager.GPS_PROVIDER)) in testDoesNotStoreNullLocation()
386 verify(mMockLocationManagerProxy).getLastKnownLocation(LocationManager.GPS_PROVIDER); in testDoesNotStoreNullLocation()
/packages/services/Car/car-lib/src/android/car/
DILocationManagerProxy.aidl24 Location getLastKnownLocation(in String provider); in getLastKnownLocation() method
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DReverseGeocoder.java119 location = (provider != null) ? locationManager.getLastKnownLocation(provider) : null; in computeAddress()