/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityGsm.java | 84 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, @Nullable String mccStr, in CellIdentityGsm() argument 89 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm() 102 public CellIdentityGsm(@NonNull android.hardware.radio.V1_0.CellIdentityGsm cid) { in CellIdentityGsm() argument 103 this(cid.lac, cid.cid, cid.arfcn, in CellIdentityGsm() 104 cid.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.bsic, in CellIdentityGsm() 105 cid.mcc, cid.mnc, "", "", new ArraySet<>()); in CellIdentityGsm() 109 public CellIdentityGsm(@NonNull android.hardware.radio.V1_2.CellIdentityGsm cid) { in CellIdentityGsm() argument 110 this(cid.base.lac, cid.base.cid, cid.base.arfcn, in CellIdentityGsm() 111 cid.base.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.base.bsic, cid.base.mcc, in CellIdentityGsm() 112 cid.base.mnc, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort, in CellIdentityGsm() [all …]
|
D | CellIdentityTdscdma.java | 88 public CellIdentityTdscdma(@Nullable String mcc, @Nullable String mnc, int lac, int cid, in CellIdentityTdscdma() argument 94 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma() 107 private CellIdentityTdscdma(@NonNull CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 108 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma() 109 cid.mCpid, cid.mUarfcn, cid.mAlphaLong, in CellIdentityTdscdma() 110 cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityTdscdma() 114 public CellIdentityTdscdma(@NonNull android.hardware.radio.V1_0.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 115 this(cid.mcc, cid.mnc, cid.lac, cid.cid, cid.cpid, CellInfo.UNAVAILABLE, "", "", in CellIdentityTdscdma() 120 public CellIdentityTdscdma(@NonNull android.hardware.radio.V1_2.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 121 this(cid.base.mcc, cid.base.mnc, cid.base.lac, cid.base.cid, cid.base.cpid, in CellIdentityTdscdma() [all …]
|
D | CellIdentityWcdma.java | 89 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument 95 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma() 109 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_0.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 110 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", "", in CellIdentityWcdma() 115 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_2.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 116 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma() 117 cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityWcdma() 118 cid.operatorNames.alphaShort, new ArraySet<>(), null); in CellIdentityWcdma() 122 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_5.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 123 this(cid.base.base.lac, cid.base.base.cid, cid.base.base.psc, cid.base.base.uarfcn, in CellIdentityWcdma() [all …]
|
D | CellIdentityLte.java | 138 public CellIdentityLte(@NonNull android.hardware.radio.V1_0.CellIdentityLte cid) { in CellIdentityLte() argument 139 this(cid.ci, cid.pci, cid.tac, cid.earfcn, new int[] {}, in CellIdentityLte() 140 CellInfo.UNAVAILABLE, cid.mcc, cid.mnc, "", "", new ArraySet<>(), null); in CellIdentityLte() 144 public CellIdentityLte(@NonNull android.hardware.radio.V1_2.CellIdentityLte cid) { in CellIdentityLte() argument 145 this(cid.base.ci, cid.base.pci, cid.base.tac, cid.base.earfcn, new int[] {}, in CellIdentityLte() 146 cid.bandwidth, cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityLte() 147 cid.operatorNames.alphaShort, new ArraySet<>(), null); in CellIdentityLte() 151 public CellIdentityLte(@NonNull android.hardware.radio.V1_5.CellIdentityLte cid) { in CellIdentityLte() argument 152 this(cid.base.base.ci, cid.base.base.pci, cid.base.base.tac, cid.base.base.earfcn, in CellIdentityLte() 153 cid.bands.stream().mapToInt(Integer::intValue).toArray(), cid.base.bandwidth, in CellIdentityLte() [all …]
|
D | CellIdentityCdma.java | 114 public CellIdentityCdma(@NonNull android.hardware.radio.V1_0.CellIdentityCdma cid) { in CellIdentityCdma() argument 115 this(cid.networkId, cid.systemId, cid.baseStationId, cid.longitude, cid.latitude, "", ""); in CellIdentityCdma() 119 public CellIdentityCdma(@NonNull android.hardware.radio.V1_2.CellIdentityCdma cid) { in CellIdentityCdma() argument 120 this(cid.base.networkId, cid.base.systemId, cid.base.baseStationId, cid.base.longitude, in CellIdentityCdma() 121 cid.base.latitude, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in CellIdentityCdma() 124 private CellIdentityCdma(@NonNull CellIdentityCdma cid) { in CellIdentityCdma() argument 125 this(cid.mNetworkId, cid.mSystemId, cid.mBasestationId, cid.mLongitude, cid.mLatitude, in CellIdentityCdma() 126 cid.mAlphaLong, cid.mAlphaShort); in CellIdentityCdma()
|
D | CellIdentityNr.java | 89 public CellIdentityNr(@NonNull android.hardware.radio.V1_4.CellIdentityNr cid) { in CellIdentityNr() argument 90 this(cid.pci, cid.tac, cid.nrarfcn, new int[] {}, cid.mcc, cid.mnc, cid.nci, in CellIdentityNr() 91 cid.operatorNames.alphaLong, cid.operatorNames.alphaShort, in CellIdentityNr() 96 public CellIdentityNr(@NonNull android.hardware.radio.V1_5.CellIdentityNr cid) { in CellIdentityNr() argument 97 this(cid.base.pci, cid.base.tac, cid.base.nrarfcn, in CellIdentityNr() 98 cid.bands.stream().mapToInt(Integer::intValue).toArray(), cid.base.mcc, in CellIdentityNr() 99 cid.base.mnc, cid.base.nci, cid.base.operatorNames.alphaLong, in CellIdentityNr() 100 cid.base.operatorNames.alphaShort, cid.additionalPlmns); in CellIdentityNr()
|
D | PcoData.java | 31 public final int cid; field in PcoData 36 public PcoData(int cid, String bearerProto, int pcoId, byte[]contents) { in PcoData() argument 37 this.cid = cid; in PcoData() 44 cid = in.readInt(); in PcoData() 54 out.writeInt(cid); in writeToParcel() 84 return "PcoData(" + cid + ", " + bearerProto + ", " + pcoId + ", contents[" + in toString()
|
D | SmsCbLocation.java | 73 public SmsCbLocation(@NonNull String plmn, int lac, int cid) { in SmsCbLocation() argument 76 mCid = cid; in SmsCbLocation() 163 public boolean isInLocationArea(@Nullable String plmn, int lac, int cid) { in isInLocationArea() argument 172 if (mCid != -1 && mCid != cid) { in isInLocationArea()
|
D | NeighboringCellInfo.java | 110 public NeighboringCellInfo(int rssi, int cid) { in NeighboringCellInfo() argument 112 mCid = cid; in NeighboringCellInfo() 285 public void setCid(int cid) { in setCid() argument 286 mCid = cid; in setCid()
|
D | CellInfoLte.java | 105 public void setCellIdentity(CellIdentityLte cid) { in setCellIdentity() argument 106 if (DBG) log("setCellIdentity: " + cid); in setCellIdentity() 107 mCellIdentityLte = cid; in setCellIdentity()
|
D | CellInfoWcdma.java | 92 public void setCellIdentity(CellIdentityWcdma cid) { in setCellIdentity() argument 93 mCellIdentityWcdma = cid; in setCellIdentity()
|
D | CellInfoGsm.java | 93 public void setCellIdentity(CellIdentityGsm cid) { in setCellIdentity() argument 94 mCellIdentityGsm = cid; in setCellIdentity()
|
D | CellInfoTdscdma.java | 97 public void setCellIdentity(CellIdentityTdscdma cid) { in setCellIdentity() argument 98 mCellIdentityTdscdma = cid; in setCellIdentity()
|
D | CellInfoCdma.java | 100 public void setCellIdentity(CellIdentityCdma cid) { in setCellIdentity() argument 101 mCellIdentityCdma = cid; in setCellIdentity()
|
D | SmsCbMessage.java | 658 int cid; in createFromCursor() local 661 cid = cursor.getInt(cidColumn); in createFromCursor() 663 cid = -1; in createFromCursor() 666 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in createFromCursor()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | EventLogTags.logtags | 22 50105 pdp_setup_fail (cause|1|5), (cid|1|5), (network_type|1|5) 25 50106 call_drop (cause|1|5), (cid|1|5), (network_type|1|5) 28 50107 data_network_registration_fail (op_numeric|1|5), (cid|1|5) 34 50109 pdp_network_drop (cid|1|5), (network_type|1|5) 37 50110 cdma_data_setup_failed (cause|1|5), (cid|1|5), (network_type|1|5) 40 50111 cdma_data_drop (cid|1|5), (network_type|1|5) 46 50112 gsm_rat_switched (cid|1|5), (network_from|1|5), (network_to|1|5) 81 50123 gsm_rat_switched_new (cid|1|5), (network_from|1|5), (network_to|1|5)
|
D | CarrierResolver.java | 279 private String getCarrierNameFromId(int cid) { in getCarrierNameFromId() argument 285 /* selectionArgs */ new String[]{cid + ""}, null); in getCarrierNameFromId() 290 + " Records(s) in DB" + " cid: " + cid); in getCarrierNameFromId() 397 private void updateCarrierIdAndName(int cid, String name, in updateCarrierIdAndName() argument 438 if (cid != mCarrierId) { in updateCarrierIdAndName() 439 logd("[updateCarrierId] from:" + mCarrierId + " to:" + cid); in updateCarrierIdAndName() 440 mCarrierId = cid; in updateCarrierIdAndName() 543 List<String> privilegeAccessRule, int cid, String name, int parentCid) { in CarrierMatchingRule() argument 553 mCid = cid; in CarrierMatchingRule() 976 int cid = cursor.getInt(cursor.getColumnIndex(CarrierId.CARRIER_ID)); in getCarrierIdsFromApnQuery() local [all …]
|
/frameworks/base/telephony/java/android/telephony/data/ |
D | DataService.java | 185 public void deactivateDataCall(int cid, @DeactivateDataReason int reason, in deactivateDataCall() argument 296 public final int cid; field in DataService.DeactivateDataCallRequest 299 DeactivateDataCallRequest(int cid, int reason, IDataServiceCallback callback) { in DeactivateDataCallRequest() argument 300 this.cid = cid; in DeactivateDataCallRequest() 390 serviceProvider.deactivateDataCall(deactivateDataCallRequest.cid, in handleMessage() 518 public void deactivateDataCall(int slotIndex, int cid, int reason, in deactivateDataCall() argument 521 new DeactivateDataCallRequest(cid, reason, callback)) in deactivateDataCall()
|
D | IDataService.aidl | 33 void deactivateDataCall(int slotId, int cid, int reason, IDataServiceCallback callback); in deactivateDataCall() argument
|
/frameworks/native/libs/vr/libpdx/ |
D | service.cpp | 58 svc->name_.c_str(), info_.op, info_.pid, info_.cid); in Destroy() 365 return svc->endpoint()->ModifyChannelEvents(info_.cid, clear_mask, in ModifyChannelEvents() 413 int Message::GetChannelId() const { return info_.cid; } in GetChannelId() 433 status = svc->SetChannel(info_.cid, chan); in SetChannel() 585 info.cid); in HandleSystemMessage() 592 info.cid); in HandleSystemMessage() 600 info.pid, info.cid); in HandleSystemMessage() 607 info.cid); in HandleSystemMessage() 629 info.pid, info.cid, info.op); in DefaultHandleMessage()
|
/frameworks/base/telephony/java/android/telephony/gsm/ |
D | GsmCellLocation.java | 87 public void setLacAndCid(int lac, int cid) { in setLacAndCid() argument 89 mCid = cid; in setLacAndCid()
|
/frameworks/base/telephony/common/com/google/android/mms/pdu/ |
D | PduBody.java | 167 public PduPart getPartByContentId(String cid) { in getPartByContentId() argument 168 return mPartMapByContentId.get(cid); in getPartByContentId()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 1374 cellinfo.cellIdentityGsm.cid = CID; in testConvertHalCellInfoListForGSM() 1416 cellinfo.cellIdentityWcdma.cid = CID; in testConvertHalCellInfoListForWcdma() 1453 android.hardware.radio.V1_2.CellIdentityTdscdma cid) { in initializeCellIdentityTdscdma_1_2() argument 1454 cid.base.lac = LAC; in initializeCellIdentityTdscdma_1_2() 1455 cid.base.cid = CID; in initializeCellIdentityTdscdma_1_2() 1456 cid.base.cpid = PSC; in initializeCellIdentityTdscdma_1_2() 1457 cid.base.mcc = MCC_STR; in initializeCellIdentityTdscdma_1_2() 1458 cid.base.mnc = MNC_STR; in initializeCellIdentityTdscdma_1_2() 1459 cid.uarfcn = UARFCN; in initializeCellIdentityTdscdma_1_2() 1460 cid.operatorNames.alphaLong = ALPHA_LONG; in initializeCellIdentityTdscdma_1_2() [all …]
|
D | CellIdentityGsmTest.java | 239 int cid = 1; in testgetGlobalCellId() local 241 LAC, cid, ARFCN, BSIC, MCC_STR, MNC_STR, ALPHA_LONG, ALPHA_SHORT, in testgetGlobalCellId() 244 + "000" + Integer.toString(cid, 16); in testgetGlobalCellId()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | CellularDataService.java | 138 public void deactivateDataCall(int cid, int reason, DataServiceCallback callback) { in deactivateDataCall() argument 149 mPhone.mCi.deactivateDataCall(cid, reason, message); in deactivateDataCall()
|