Home
last modified time | relevance | path

Searched refs:mMnc (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DCellIdentityWcdma.java36 private final int mMnc; field in CellIdentityWcdma
51 mMnc = Integer.MAX_VALUE; in CellIdentityWcdma()
84 mMnc = mnc; in CellIdentityWcdma()
93 mMnc = cid.mMnc; in CellIdentityWcdma()
115 return mMnc; in getMnc()
143 return Objects.hash(mMcc, mMnc, mLac, mCid, mPsc); in hashCode()
165 mMnc == o.mMnc && in equals()
176 sb.append(" mMnc=").append(mMnc); in toString()
197 dest.writeInt(mMnc); in writeToParcel()
207 mMnc = in.readInt(); in CellIdentityWcdma()
DCellIdentityGsm.java36 private final int mMnc; field in CellIdentityGsm
51 mMnc = Integer.MAX_VALUE; in CellIdentityGsm()
83 mMnc = mnc; in CellIdentityGsm()
92 mMnc = cid.mMnc; in CellIdentityGsm()
114 return mMnc; in getMnc()
158 return Objects.hash(mMcc, mMnc, mLac, mCid); in hashCode()
173 mMnc == o.mMnc && in equals()
184 sb.append(" mMnc=").append(mMnc); in toString()
205 dest.writeInt(mMnc); in writeToParcel()
215 mMnc = in.readInt(); in CellIdentityGsm()
DCellIdentityLte.java36 private final int mMnc; field in CellIdentityLte
51 mMnc = Integer.MAX_VALUE; in CellIdentityLte()
85 mMnc = mnc; in CellIdentityLte()
94 mMnc = cid.mMnc; in CellIdentityLte()
116 return mMnc; in getMnc()
149 return Objects.hash(mMcc, mMnc, mCi, mPci, mTac); in hashCode()
164 mMnc == o.mMnc && in equals()
175 sb.append(" mMnc="); sb.append(mMnc); in toString()
196 dest.writeInt(mMnc); in writeToParcel()
206 mMnc = in.readInt(); in CellIdentityLte()
DSubscriptionInfo.java113 private int mMnc; field in SubscriptionInfo
137 this.mMnc = mnc; in SubscriptionInfo()
297 return this.mMnc; in getMnc()
348 dest.writeInt(mMnc); in writeToParcel()
381 + " mnc " + mMnc + " SimProvisioningStatus " + mSimProvisioningStatus +"}"; in toString()
/frameworks/base/core/java/android/service/carrier/
DCarrierIdentifier.java42 private String mMnc; field in CarrierIdentifier
51 mMnc = mnc; in CarrierIdentifier()
70 return mMnc; in getMnc()
101 out.writeString(mMnc); in writeToParcel()
112 + ",mnc=" + mMnc in toString()
123 mMnc = in.readString(); in readFromParcel()