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.java96 private String mCountryIso; field in EmergencyNumberTracker
281 if (mCountryIso == null) { in initializeDatabaseEmergencyNumberList()
506 logd(mCountryIso + " ota emergency database is loaded. Ver: " + otaDatabaseVersion); in cacheOtaEmergencyNumberDatabase()
509 if (countryEccInfo.isoCode.equals(mCountryIso.toUpperCase())) { in cacheOtaEmergencyNumberDatabase()
512 eccInfo, mCountryIso)); in cacheOtaEmergencyNumberDatabase()
723 if (mCountryIso.equals("br") || mCountryIso.equals("cl") in isEmergencyNumber()
724 || mCountryIso.equals("ni")) { in isEmergencyNumber()
804 return mCountryIso; in getEmergencyCountryIso()
823 mCountryIso = countryIso; in updateEmergencyCountryIso()
914 return new EmergencyNumber(number, mCountryIso.toLowerCase(), "", in getLabeledEmergencyNumberForEcclist()
[all …]
/frameworks/base/telephony/java/android/telephony/emergency/
DEmergencyNumber.java244 private final String mCountryIso; field in EmergencyNumber
258 this.mCountryIso = countryIso; in EmergencyNumber()
269 mCountryIso = source.readString(); in EmergencyNumber()
281 dest.writeString(mCountryIso); in writeToParcel()
323 return mCountryIso; in getCountryIso()
489 return "EmergencyNumber:" + "Number-" + mNumber + "|CountryIso-" + mCountryIso in toString()
504 && mCountryIso.equals(other.mCountryIso) in equals()
514 return Objects.hash(mNumber, mCountryIso, mMnc, mEmergencyServiceCategoryBitmask, in hashCode()
/frameworks/base/telephony/java/android/telephony/
DSubscriptionInfo.java142 private String mCountryIso; field in SubscriptionInfo
226 info.mMcc, info.mMnc, info.mCountryIso, info.mIsEmbedded, info.mNativeAccessRules, in SubscriptionInfo()
284 this.mCountryIso = countryIso; in SubscriptionInfo()
537 return this.mCountryIso; in getCountryIso()
813 dest.writeString(mCountryIso); in writeToParcel()
862 + " mnc=" + mMnc + " countryIso=" + mCountryIso + " isEmbedded=" + mIsEmbedded in toString()
879 mIsOpportunistic, mGroupUUID, mIccId, mNumber, mMcc, mMnc, mCountryIso, mCardString, in hashCode()
911 && Objects.equals(mCountryIso, toCompare.mCountryIso) in equals()