Home
last modified time | relevance | path

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

/frameworks/base/services/tests/timetests/src/com/android/server/timedetector/
DGnssTimeUpdateServiceTest.java93 LocationListener locationListener = locationListenerCaptor.getValue(); in testLocationListenerOnLocationChanged_validLocationTime_suggestsGnssTime() local
96 locationListener.onLocationChanged(location); in testLocationListenerOnLocationChanged_validLocationTime_suggestsGnssTime()
98 verify(mMockLocationManager).removeUpdates(locationListener); in testLocationListenerOnLocationChanged_validLocationTime_suggestsGnssTime()
123 LocationListener locationListener = locationListenerCaptor.getValue(); in testLocationListenerOnLocationChanged_nullLocationTime_doesNotSuggestGnssTime() local
126 locationListener.onLocationChanged(location); in testLocationListenerOnLocationChanged_nullLocationTime_doesNotSuggestGnssTime()
128 verify(mMockLocationManager).removeUpdates(locationListener); in testLocationListenerOnLocationChanged_nullLocationTime_doesNotSuggestGnssTime()
191 LocationListener locationListener = locationListenerCaptor.getValue(); in advanceServiceToSleepingState() local
195 locationListener.onLocationChanged(location); in advanceServiceToSleepingState()
197 verify(mMockLocationManager).removeUpdates(locationListener); in advanceServiceToSleepingState()
/frameworks/base/services/core/java/com/android/server/location/gnss/
DGnssLocationProvider.java701 LocationListener locationListener; in handleRequestLocation() local
709 locationListener = location -> { }; in handleRequestLocation()
714 locationListener = this::injectBestLocation; in handleRequestLocation()
738 DIRECT_EXECUTOR, locationListener); in handleRequestLocation()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/provider/
DLocationProviderManagerTest.java783 ILocationListener locationListener = createMockLocationListener(); in testProviderRequestListener() local
786 mManager.registerLocationRequest(request, IDENTITY, PERMISSION_FINE, locationListener); in testProviderRequestListener()
791 mManager.unregisterLocationRequest(locationListener); in testProviderRequestListener()