Home
last modified time | relevance | path

Searched refs:mCountryIso (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/location/java/android/location/
DCountry.java55 private final String mCountryIso; field in Country
88 mCountryIso = countryIso.toUpperCase(Locale.US); in Country()
98 mCountryIso = countryIso.toUpperCase(Locale.US); in Country()
104 mCountryIso = country.mCountryIso; in Country()
114 return mCountryIso; in getCountryIso()
155 parcel.writeString(mCountryIso); in writeToParcel()
173 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource(); in equals()
183 hash = hash * 13 + mCountryIso.hashCode(); in hashCode()
199 return country != null && mCountryIso.equals(country.getCountryIso()); in equalsIgnoreSource()
204 return "Country {ISO=" + mCountryIso + ", source=" + mSource + ", time=" + mTimestamp + "}"; in toString()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/emergency/
DEmergencyNumberTracker.java82 private String mCountryIso; field in EmergencyNumberTracker
224 if (mCountryIso == null) { in initializeDatabaseEmergencyNumberList()
225 mCountryIso = getInitialCountryIso().toLowerCase(); in initializeDatabaseEmergencyNumberList()
226 cacheEmergencyDatabaseByCountry(mCountryIso); in initializeDatabaseEmergencyNumberList()
385 mCountryIso = countryIso.toLowerCase(); in updateEmergencyNumberListDatabaseAndNotify()
483 if (mCountryIso.equals("br") || mCountryIso.equals("cl") in isEmergencyNumber()
484 || mCountryIso.equals("ni")) { in isEmergencyNumber()
628 return new EmergencyNumber(number, mCountryIso.toLowerCase(), "", in getLabeledEmergencyNumberForEcclist()
672 logd("slotId:" + slotId + " country:" + mCountryIso + " emergencyNumbers: " in isEmergencyNumberFromEccList()
687 if (useExactMatch || mCountryIso.equals("br") || mCountryIso.equals("cl") in isEmergencyNumberFromEccList()
[all …]
/frameworks/base/telephony/java/android/telephony/emergency/
DEmergencyNumber.java240 private final String mCountryIso; field in EmergencyNumber
254 this.mCountryIso = countryIso; in EmergencyNumber()
265 mCountryIso = source.readString(); in EmergencyNumber()
277 dest.writeString(mCountryIso); in writeToParcel()
316 return mCountryIso; in getCountryIso()
482 return "EmergencyNumber:" + "Number-" + mNumber + "|CountryIso-" + mCountryIso in toString()
497 && mCountryIso.equals(other.mCountryIso) in equals()
507 return Objects.hash(mNumber, mCountryIso, mMnc, mEmergencyServiceCategoryBitmask, in hashCode()
/frameworks/base/telephony/java/android/telephony/
DSubscriptionInfo.java139 private String mCountryIso; field in SubscriptionInfo
252 this.mCountryIso = countryIso; in SubscriptionInfo()
464 return this.mCountryIso; in getCountryIso()
694 dest.writeString(mCountryIso); in writeToParcel()
740 + " mnc " + mMnc + "mCountryIso=" + mCountryIso + " isEmbedded " + mIsEmbedded in toString()
756 mCountryIso, mCardString, mCardId, mDisplayName, mCarrierName, mAccessRules, in hashCode()
786 && Objects.equals(mCountryIso, toCompare.mCountryIso) in equals()