Home
last modified time | relevance | path

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

/frameworks/base/location/java/android/location/
DILocationCallback.aidl25 oneway interface ILocationCallback interface
DILocationManager.aidl32 import android.location.ILocationCallback;
55 … getCurrentLocation(String provider, in LocationRequest request, in ILocationCallback callback, St… in getCurrentLocation()
DLocationManager.java3221 private static class GetCurrentLocationTransport extends ILocationCallback.Stub implements
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/provider/
DLocationProviderManagerTest.java65 import android.location.ILocationCallback;
797 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation()
809 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_Cancel()
821 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_ProviderDisabled()
835 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_ProviderAlreadyDisabled()
849 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_LastLocation()
857 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_Timeout()
869 ILocationCallback listener = createMockGetCurrentLocationListener(); in testGetCurrentLocation_InvisibleUser()
1597 private ILocationCallback createMockGetCurrentLocationListener() {
1598 return spy(new ILocationCallback.Stub() {
/frameworks/base/services/core/java/com/android/server/location/provider/
DLocationProviderManager.java60 import android.location.ILocationCallback;
336 private final ILocationCallback mCallback;
338 GetCurrentLocationTransport(ILocationCallback callback) { in GetCurrentLocationTransport()
1965 CallerIdentity identity, int permissionLevel, ILocationCallback callback) {
/frameworks/base/services/core/java/com/android/server/location/
DLocationManagerService.java67 import android.location.ILocationCallback;
776 ILocationCallback consumer, String packageName, @Nullable String attributionTag, in getCurrentLocation()