HomeSort by relevance Sort by last modified time
    Searched defs:detectCountry (Results 1 - 6 of 6) sorted by null

  /frameworks/base/services/java/com/android/server/location/
CountryDetectorBase.java 28 * Calling {@link #detectCountry} to start detecting the country. The country
50 public abstract Country detectCountry();
ComprehensiveCountryDetector.java 47 * Call the {@link #detectCountry()} to get the available country immediately.
139 detectCountry(true, false);
150 public Country detectCountry() {
152 return detectCountry(false, !mStopped);
271 private Country detectCountry(boolean notifyChange, boolean startLocationBasedDetection) {
306 detectCountry(false, true);
320 + " detectCountry=" + (detectedCountry == null ? null :
368 mLocationBasedCountryDetector.detectCountry();
421 detectCountry(false, true);
449 detectCountry(true, true)
    [all...]
LocationBasedCountryDetector.java 39 * Use {@link #detectCountry} to start querying. If the location can not be
146 public synchronized Country detectCountry() {
  /frameworks/base/location/java/android/location/
CountryDetector.java 38 * Call the {@link #detectCountry()} to get the available country immediately.
104 public Country detectCountry() {
106 return mService.detectCountry();
108 Log.e(TAG, "detectCountry: RemoteException", e);
  /frameworks/base/services/java/com/android/server/
CountryDetectorService.java 101 public Country detectCountry() throws RemoteException {
105 return mCountryDetector.detectCountry();
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 193 detector.detectCountry();
225 detector.detectCountry();
250 detector.detectCountry();
274 detector.detectCountry();
305 detector.detectCountry();
329 detector.detectCountry();

Completed in 109 milliseconds