Home
last modified time | relevance | path

Searched refs:mCid (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
DSmsCbLocation.java36 private final int mCid; field in SmsCbLocation
45 mCid = -1; in SmsCbLocation()
55 mCid = -1; in SmsCbLocation()
65 mCid = cid; in SmsCbLocation()
74 mCid = in.readInt(); in SmsCbLocation()
98 return mCid; in getCid()
105 hash = hash * 31 + mCid; in hashCode()
118 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid; in equals()
123 return '[' + mPlmn + ',' + mLac + ',' + mCid + ']'; in toString()
133 if (mCid != -1 && mCid != area.mCid) { in isInLocationArea()
[all …]
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java29 private int mCid; field in GsmCellLocation
37 mCid = -1; in GsmCellLocation()
46 mCid = bundle.getInt("cid", -1); in GsmCellLocation()
61 return mCid; in getCid()
80 mCid = -1; in setStateInvalid()
89 mCid = cid; in setLacAndCid()
103 return mLac ^ mCid; in hashCode()
120 return equalsHandlesNulls(mLac, s.mLac) && equalsHandlesNulls(mCid, s.mCid) in equals()
126 return "["+ mLac + "," + mCid + "," + mPsc + "]"; in toString()
147 m.putInt("cid", mCid); in fillInNotifierBundle()
[all …]
/frameworks/base/telephony/java/android/telephony/
DNeighboringCellInfo.java63 private int mCid; field in NeighboringCellInfo
95 mCid = UNKNOWN_CID; in NeighboringCellInfo()
112 mCid = cid; in NeighboringCellInfo()
125 mCid = info.getCellIdentity().getCid(); in NeighboringCellInfo()
126 if (mCid == Integer.MAX_VALUE) mCid = UNKNOWN_CID; in NeighboringCellInfo()
141 mCid = info.getCellIdentity().getCid(); in NeighboringCellInfo()
142 if (mCid == Integer.MAX_VALUE) mCid = UNKNOWN_CID; in NeighboringCellInfo()
164 mCid = UNKNOWN_CID; in NeighboringCellInfo()
183 mCid = Integer.parseInt(location.substring(4), 16); in NeighboringCellInfo()
199 mCid = UNKNOWN_CID; in NeighboringCellInfo()
[all …]
DCellIdentityTdscdma.java42 private final int mCid; field in CellIdentityTdscdma
55 mCid = CellInfo.UNAVAILABLE; in CellIdentityTdscdma()
78 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma()
84 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma()
148 return mCid; in getCid()
178 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation()
196 && mCid == o.mCid in equals()
204 return Objects.hash(mLac, mCid, mCpid, mUarfcn, super.hashCode()); in hashCode()
215 .append(" mCid=").append(mCid) in toString()
233 dest.writeInt(mCid); in writeToParcel()
[all …]
DCellIdentityWcdma.java42 private final int mCid; field in CellIdentityWcdma
55 mCid = CellInfo.UNAVAILABLE; in CellIdentityWcdma()
77 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma()
95 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma()
144 return mCid; in getCid()
181 return Objects.hash(mLac, mCid, mPsc, super.hashCode()); in hashCode()
203 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation()
223 && mCid == o.mCid in equals()
235 .append(" mCid=").append(mCid) in toString()
251 dest.writeInt(mCid); in writeToParcel()
[all …]
DCellIdentityGsm.java42 private final int mCid; field in CellIdentityGsm
55 mCid = CellInfo.UNAVAILABLE; in CellIdentityGsm()
77 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm()
97 this(cid.mLac, cid.mCid, cid.mArfcn, cid.mBsic, cid.mMccStr, in CellIdentityGsm()
144 return mCid; in getCid()
207 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation()
215 return Objects.hash(mLac, mCid, super.hashCode()); in hashCode()
230 && mCid == o.mCid in equals()
242 .append(" mCid=").append(mCid) in toString()
258 dest.writeInt(mCid); in writeToParcel()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierResolver.java533 private int mCid; field in CarrierResolver.CarrierMatchingRule
552 mCid = cid; in CarrierMatchingRule()
567 mCid = rule.mCid; in CarrierMatchingRule()
704 + " cid: " + mCid in toString()
776 if (rule.mParentCid == maxRule.mCid) { in matchSubscriptionCarrier()
778 } else if (maxRule.mParentCid == rule.mCid) { in matchSubscriptionCarrier()
797 maxRuleParent.mCid = maxRuleParent.mParentCid; in matchSubscriptionCarrier()
798 maxRuleParent.mName = getCarrierNameFromId(maxRuleParent.mCid); in matchSubscriptionCarrier()
800 logd("[matchSubscriptionCarrier] specific cid: " + maxRule.mCid in matchSubscriptionCarrier()
801 + " specific name: " + maxRule.mName +" cid: " + maxRuleParent.mCid in matchSubscriptionCarrier()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcController.java143 mDcListActiveByCid.remove(dc.mCid); in removeDc()
149 if (DBG && dc.mCid < 0) { in addActiveDcByCid()
153 mDcListActiveByCid.put(dc.mCid, dc); in addActiveDcByCid()
165 DataConnection removedDc = mDcListActiveByCid.remove(dc.mCid); in removeActiveDcByCid()
285 if (dataCallResponseListByCid.get(dc.mCid) == null) { in onDataStateChanged()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DDcControllerTest.java143 mDc.mCid = 1; in testDataDormant()