Home
last modified time | relevance | path

Searched refs:mMcc (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java34 private final int mMcc; field in CellIdentityWcdma
50 mMcc = Integer.MAX_VALUE; in CellIdentityWcdma()
83 mMcc = mcc; in CellIdentityWcdma()
92 mMcc = cid.mMcc; in CellIdentityWcdma()
108 return mMcc; in getMcc()
143 return Objects.hash(mMcc, mMnc, mLac, mCid, mPsc); in hashCode()
164 return mMcc == o.mMcc && in equals()
175 sb.append(" mMcc=").append(mMcc); in toString()
196 dest.writeInt(mMcc); in writeToParcel()
206 mMcc = in.readInt(); in CellIdentityWcdma()
DCellIdentityLte.java34 private final int mMcc; field in CellIdentityLte
50 mMcc = Integer.MAX_VALUE; in CellIdentityLte()
84 mMcc = mcc; in CellIdentityLte()
93 mMcc = cid.mMcc; in CellIdentityLte()
109 return mMcc; in getMcc()
149 return Objects.hash(mMcc, mMnc, mCi, mPci, mTac); in hashCode()
163 return mMcc == o.mMcc && in equals()
174 sb.append(" mMcc="); sb.append(mMcc); in toString()
195 dest.writeInt(mMcc); in writeToParcel()
205 mMcc = in.readInt(); in CellIdentityLte()
DCellIdentityGsm.java34 private final int mMcc; field in CellIdentityGsm
50 mMcc = Integer.MAX_VALUE; in CellIdentityGsm()
82 mMcc = mcc; in CellIdentityGsm()
91 mMcc = cid.mMcc; in CellIdentityGsm()
107 return mMcc; in getMcc()
158 return Objects.hash(mMcc, mMnc, mLac, mCid); in hashCode()
172 return mMcc == o.mMcc && in equals()
183 sb.append(" mMcc=").append(mMcc); in toString()
204 dest.writeInt(mMcc); in writeToParcel()
214 mMcc = in.readInt(); in CellIdentityGsm()
DSubscriptionInfo.java100 private int mMcc; field in SubscriptionInfo
128 this.mMcc = mcc; in SubscriptionInfo()
270 return this.mMcc; in getMcc()
325 dest.writeInt(mMcc); in writeToParcel()
357 + " dataRoaming=" + mDataRoaming + " iconBitmap=" + mIconBitmap + " mcc " + mMcc in toString()
/frameworks/base/core/java/android/service/carrier/
DCarrierIdentifier.java41 private String mMcc; field in CarrierIdentifier
50 mMcc = mcc; in CarrierIdentifier()
65 return mMcc; in getMcc()
100 out.writeString(mMcc); in writeToParcel()
111 + "mcc=" + mMcc in toString()
122 mMcc = in.readString(); in readFromParcel()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DMccTable.java56 final int mMcc; field in MccTable.MccEntry
64 mMcc = mnc; in MccEntry()
71 return mMcc - o.mMcc; in compareTo()