Searched defs:mMnc (Results 1 - 5 of 5) sorted by relevance

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

Completed in 639 milliseconds