/frameworks/base/telephony/java/android/telephony/ |
D | SmsCbLocation.java | 41 private final int mCid; field in SmsCbLocation 51 mCid = -1; in SmsCbLocation() 62 mCid = -1; in SmsCbLocation() 76 mCid = cid; in SmsCbLocation() 86 mCid = in.readInt(); in SmsCbLocation() 111 return mCid; in getCid() 118 hash = hash * 31 + mCid; in hashCode() 131 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid; in equals() 136 return '[' + mPlmn + ',' + mLac + ',' + mCid + ']'; in toString() 146 if (mCid != -1 && mCid != area.mCid) { in isInLocationArea() [all …]
|
D | NeighboringCellInfo.java | 63 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 …]
|
D | CellIdentityGsm.java | 47 private final int mCid; field in CellIdentityGsm 63 mCid = CellInfo.UNAVAILABLE; in CellIdentityGsm() 89 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm() 126 this(cid.mLac, cid.mCid, cid.mArfcn, cid.mBsic, cid.mMccStr, in CellIdentityGsm() 148 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId() 150 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId() 186 return mCid; in getCid() 258 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() 266 return Objects.hash(mLac, mCid, mAdditionalPlmns.hashCode(), super.hashCode()); in hashCode() 281 && mCid == o.mCid in equals() [all …]
|
D | CellIdentityTdscdma.java | 46 private final int mCid; field in CellIdentityTdscdma 64 mCid = CellInfo.UNAVAILABLE; in CellIdentityTdscdma() 94 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma() 108 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma() 157 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId() 159 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId() 201 return mCid; in getCid() 248 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() 266 && mCid == o.mCid in equals() 276 return Objects.hash(mLac, mCid, mCpid, mUarfcn, in hashCode() [all …]
|
D | CellIdentityWcdma.java | 47 private final int mCid; field in CellIdentityWcdma 66 mCid = CellInfo.UNAVAILABLE; in CellIdentityWcdma() 95 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma() 133 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma() 156 if (mLac == CellInfo.UNAVAILABLE || mCid == CellInfo.UNAVAILABLE) return; in updateGlobalCellId() 158 mGlobalCellId = plmn + String.format("%04x%04x", mLac, mCid); in updateGlobalCellId() 195 return mCid; in getCid() 232 return Objects.hash(mLac, mCid, mPsc, mAdditionalPlmns.hashCode(), super.hashCode()); in hashCode() 271 int cid = mCid != CellInfo.UNAVAILABLE ? mCid : -1; in asCellLocation() 291 && mCid == o.mCid in equals() [all …]
|
/frameworks/base/telephony/java/android/telephony/gsm/ |
D | GsmCellLocation.java | 29 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/opt/telephony/src/java/com/android/internal/telephony/ |
D | CarrierResolver.java | 534 private int mCid; field in CarrierResolver.CarrierMatchingRule 553 mCid = cid; in CarrierMatchingRule() 568 mCid = rule.mCid; in CarrierMatchingRule() 705 + " cid: " + mCid in toString() 777 if (rule.mParentCid == maxRule.mCid) { in matchSubscriptionCarrier() 779 } else if (maxRule.mParentCid == rule.mCid) { in matchSubscriptionCarrier() 798 maxRuleParent.mCid = maxRuleParent.mParentCid; in matchSubscriptionCarrier() 799 maxRuleParent.mName = getCarrierNameFromId(maxRuleParent.mCid); in matchSubscriptionCarrier() 801 logd("[matchSubscriptionCarrier] specific cid: " + maxRule.mCid in matchSubscriptionCarrier() 802 + " specific name: " + maxRule.mName +" cid: " + maxRuleParent.mCid in matchSubscriptionCarrier() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcController.java | 172 mDcListActiveByCid.remove(dc.mCid); in removeDc() 178 if (DBG && dc.mCid < 0) { in addActiveDcByCid() 182 mDcListActiveByCid.put(dc.mCid, dc); in addActiveDcByCid() 194 DataConnection removedDc = mDcListActiveByCid.remove(dc.mCid); in removeActiveDcByCid() 292 if (dataCallResponseListByCid.get(dc.mCid) == null) { in onDataStateChanged()
|
D | DataConnection.java | 297 public int mCid; field in DataConnection 450 return mCid; in getCid() 627 mCid = -1; in DataConnection() 823 String str = "tearDownData. mCid=" + mCid + ", reason=" + discReason; in tearDownData() 826 mDataServiceManager.deactivateDataCall(mCid, discReason, in tearDownData() 838 Message msg = mDct.obtainMessage(event, mCid, cp.mRequestType, pair); in notifyAllWithEvent() 862 connectionCompletedMsg.arg1 = mCid; in notifyConnectCompleted() 960 mCid = -1; in clearSettings() 1010 mCid = response.getId(); in onSetupConnectionCompleted() 1084 && mPhone.getServiceStateTracker().getNrContextIds().contains(mCid)) { in updateTcpBufferSizes() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
D | DcControllerTest.java | 140 mDc.mCid = 1; in testDataDormant()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 67036 Landroid/telephony/CellIdentityGsm;->mCid:I 67061 Landroid/telephony/CellIdentityTdscdma;->mCid:I 67075 Landroid/telephony/CellIdentityWcdma;->mCid:I 67336 Landroid/telephony/data/DataCallResponse;->mCid:I 67661 Landroid/telephony/gsm/GsmCellLocation;->mCid:I 69268 Landroid/telephony/SmsCbLocation;->mCid:I
|