Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/location/
DComprehensiveCountryDetectorTest.java146 TestCountryDetector countryDetector = new TestCountryDetector() {
153 countryDetector.setCountryListener(listener);
154 Country country = countryDetector.detectCountry();
157 assertFalse(countryDetector.locationBasedDetectorStarted());
158 assertFalse(countryDetector.locationRefreshStarted());
159 countryDetector.stop();
167 TestCountryDetector countryDetector = new TestCountryDetector() {
174 countryDetector.setCountryListener(listener);
175 Country country = countryDetector.detectCountry();
177 assertTrue(countryDetector.locationBasedDetectorStarted());
[all …]
/frameworks/base/services/java/com/android/server/
DSystemServer.java1147 CountryDetectorService countryDetector = null; in startOtherServices() local
1487 countryDetector = new CountryDetectorService(context); in startOtherServices()
1488 ServiceManager.addService(Context.COUNTRY_DETECTOR, countryDetector); in startOtherServices()
2074 final CountryDetectorService countryDetectorF = countryDetector; in startOtherServices()