Searched refs:mMcc (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityWcdma.java | 34 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()
|
D | CellIdentityGsm.java | 34 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()
|
D | CellIdentityLte.java | 34 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()
|
D | SubscriptionInfo.java | 108 private int mMcc; field in SubscriptionInfo 136 this.mMcc = mcc; in SubscriptionInfo() 290 return this.mMcc; in getMcc() 347 dest.writeInt(mMcc); in writeToParcel() 380 + " dataRoaming=" + mDataRoaming + " iconBitmap=" + mIconBitmap + " mcc " + mMcc in toString()
|
/frameworks/base/core/java/android/service/carrier/ |
D | CarrierIdentifier.java | 41 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/ |
D | MccTable.java | 53 final int mMcc; field in MccTable.MccEntry 61 mMcc = mnc; in MccEntry() 68 return mMcc - o.mMcc; in compareTo()
|
/frameworks/base/services/core/java/com/android/server/audio/ |
D | AudioService.java | 3332 if ((mMcc != mcc) || ((mMcc == 0) && force)) { in onConfigureSafeVolume() 3364 mMcc = mcc; in onConfigureSafeVolume() 5664 private int mMcc = 0; field in AudioService 5933 pw.print(" mMcc="); pw.println(mMcc); in dump()
|