Searched defs:detectCountry (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/java/com/android/server/location/
H A DCountryDetectorBase.java28 * Calling {@link #detectCountry} to start detecting the country. The country
50 public abstract Country detectCountry(); method in class:CountryDetectorBase
H A DLocationBasedCountryDetector.java39 * Use {@link #detectCountry} to start querying. If the location can not be
146 public synchronized Country detectCountry() { method in class:LocationBasedCountryDetector
H A DComprehensiveCountryDetector.java47 * Call the {@link #detectCountry()} to get the available country immediately.
139 detectCountry(true, false);
150 public Country detectCountry() { method in class:ComprehensiveCountryDetector
152 return detectCountry(false, !mStopped);
271 private Country detectCountry(boolean notifyChange, boolean startLocationBasedDetection) { method in class:ComprehensiveCountryDetector
306 detectCountry(false, true);
320 + " detectCountry=" + (detectedCountry == null ? null :
368 mLocationBasedCountryDetector.detectCountry();
421 detectCountry(false, true);
449 detectCountry(tru
[all...]
/frameworks/base/location/java/android/location/
H A DCountryDetector.java38 * Call the {@link #detectCountry()} to get the available country immediately.
104 public Country detectCountry() { method in class:CountryDetector
106 return mService.detectCountry();
108 Log.e(TAG, "detectCountry: RemoteException", e);
/frameworks/base/services/java/com/android/server/
H A DCountryDetectorService.java101 public Country detectCountry() throws RemoteException { method in class:CountryDetectorService
105 return mCountryDetector.detectCountry();

Completed in 79 milliseconds