/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityGsm.java | 87 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, @Nullable String mccStr, in CellIdentityGsm() argument 92 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm() 105 public CellIdentityGsm(@NonNull android.hardware.radio.V1_0.CellIdentityGsm cid) { in CellIdentityGsm() argument 106 this(cid.lac, cid.cid, cid.arfcn, in CellIdentityGsm() 107 cid.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.bsic, in CellIdentityGsm() 108 cid.mcc, cid.mnc, "", "", new ArraySet<>()); in CellIdentityGsm() 112 public CellIdentityGsm(@NonNull android.hardware.radio.V1_2.CellIdentityGsm cid) { in CellIdentityGsm() argument 113 this(cid.base.lac, cid.base.cid, cid.base.arfcn, in CellIdentityGsm() 114 cid.base.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.base.bsic, cid.base.mcc, in CellIdentityGsm() 115 cid.base.mnc, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort, in CellIdentityGsm() [all …]
|
D | CellIdentityTdscdma.java | 90 public CellIdentityTdscdma(@Nullable String mcc, @Nullable String mnc, int lac, int cid, in CellIdentityTdscdma() argument 96 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma() 109 private CellIdentityTdscdma(@NonNull CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 110 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma() 111 cid.mCpid, cid.mUarfcn, cid.mAlphaLong, in CellIdentityTdscdma() 112 cid.mAlphaShort, cid.mAdditionalPlmns, cid.mCsgInfo); in CellIdentityTdscdma() 116 public CellIdentityTdscdma(@NonNull android.hardware.radio.V1_0.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 117 this(cid.mcc, cid.mnc, cid.lac, cid.cid, cid.cpid, CellInfo.UNAVAILABLE, "", "", in CellIdentityTdscdma() 122 public CellIdentityTdscdma(@NonNull android.hardware.radio.V1_2.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 123 this(cid.base.mcc, cid.base.mnc, cid.base.lac, cid.base.cid, cid.base.cpid, in CellIdentityTdscdma() [all …]
|
D | CellIdentityWcdma.java | 91 public CellIdentityWcdma(int lac, int cid, int psc, int uarfcn, @Nullable String mccStr, in CellIdentityWcdma() argument 97 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma() 111 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_0.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 112 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", "", in CellIdentityWcdma() 117 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_2.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 118 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma() 119 cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityWcdma() 120 cid.operatorNames.alphaShort, new ArraySet<>(), null); in CellIdentityWcdma() 124 public CellIdentityWcdma(@NonNull android.hardware.radio.V1_5.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 125 this(cid.base.base.lac, cid.base.base.cid, cid.base.base.psc, cid.base.base.uarfcn, in CellIdentityWcdma() [all …]
|
D | CellIdentityLte.java | 140 public CellIdentityLte(@NonNull android.hardware.radio.V1_0.CellIdentityLte cid) { in CellIdentityLte() argument 141 this(cid.ci, cid.pci, cid.tac, cid.earfcn, new int[] {}, in CellIdentityLte() 142 CellInfo.UNAVAILABLE, cid.mcc, cid.mnc, "", "", new ArraySet<>(), null); in CellIdentityLte() 146 public CellIdentityLte(@NonNull android.hardware.radio.V1_2.CellIdentityLte cid) { in CellIdentityLte() argument 147 this(cid.base.ci, cid.base.pci, cid.base.tac, cid.base.earfcn, new int[] {}, in CellIdentityLte() 148 cid.bandwidth, cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityLte() 149 cid.operatorNames.alphaShort, new ArraySet<>(), null); in CellIdentityLte() 153 public CellIdentityLte(@NonNull android.hardware.radio.V1_5.CellIdentityLte cid) { in CellIdentityLte() argument 154 this(cid.base.base.ci, cid.base.base.pci, cid.base.base.tac, cid.base.base.earfcn, in CellIdentityLte() 155 cid.bands.stream().mapToInt(Integer::intValue).toArray(), cid.base.bandwidth, in CellIdentityLte() [all …]
|
D | CellIdentityCdma.java | 116 public CellIdentityCdma(@NonNull android.hardware.radio.V1_0.CellIdentityCdma cid) { in CellIdentityCdma() argument 117 this(cid.networkId, cid.systemId, cid.baseStationId, cid.longitude, cid.latitude, "", ""); in CellIdentityCdma() 121 public CellIdentityCdma(@NonNull android.hardware.radio.V1_2.CellIdentityCdma cid) { in CellIdentityCdma() argument 122 this(cid.base.networkId, cid.base.systemId, cid.base.baseStationId, cid.base.longitude, in CellIdentityCdma() 123 cid.base.latitude, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in CellIdentityCdma() 126 private CellIdentityCdma(@NonNull CellIdentityCdma cid) { in CellIdentityCdma() argument 127 this(cid.mNetworkId, cid.mSystemId, cid.mBasestationId, cid.mLongitude, cid.mLatitude, in CellIdentityCdma() 128 cid.mAlphaLong, cid.mAlphaShort); in CellIdentityCdma()
|
D | CellIdentityNr.java | 103 public CellIdentityNr(@NonNull android.hardware.radio.V1_4.CellIdentityNr cid) { in CellIdentityNr() argument 104 this(cid.pci, cid.tac, cid.nrarfcn, new int[] {}, cid.mcc, cid.mnc, cid.nci, in CellIdentityNr() 105 cid.operatorNames.alphaLong, cid.operatorNames.alphaShort, in CellIdentityNr() 110 public CellIdentityNr(@NonNull android.hardware.radio.V1_5.CellIdentityNr cid) { in CellIdentityNr() argument 111 this(cid.base.pci, cid.base.tac, cid.base.nrarfcn, in CellIdentityNr() 112 cid.bands.stream().mapToInt(Integer::intValue).toArray(), cid.base.mcc, in CellIdentityNr() 113 cid.base.mnc, cid.base.nci, cid.base.operatorNames.alphaLong, in CellIdentityNr() 114 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 | 114 public void setCellIdentity(CellIdentityLte cid) { in setCellIdentity() argument 115 if (DBG) log("setCellIdentity: " + cid); in setCellIdentity() 116 mCellIdentityLte = cid; in setCellIdentity()
|
D | CellInfoNr.java | 90 public void setCellIdentity(CellIdentityNr cid) { in setCellIdentity() argument 91 mCellIdentity = cid; in setCellIdentity()
|
D | CellInfoWcdma.java | 100 public void setCellIdentity(CellIdentityWcdma cid) { in setCellIdentity() argument 101 mCellIdentityWcdma = cid; in setCellIdentity()
|
/frameworks/base/telephony/java/android/telephony/data/ |
D | DataService.java | 242 public void deactivateDataCall(int cid, @DeactivateDataReason int reason, in deactivateDataCall() argument 302 public void startHandover(int cid, @NonNull DataServiceCallback callback) { in startHandover() argument 305 Log.d(TAG, "startHandover: " + cid); in startHandover() 330 public void cancelHandover(int cid, @NonNull DataServiceCallback callback) { in cancelHandover() argument 333 Log.d(TAG, "cancelHandover: " + cid); in cancelHandover() 444 public final int cid; field in DataService.DeactivateDataCallRequest 447 DeactivateDataCallRequest(int cid, int reason, IDataServiceCallback callback) { in DeactivateDataCallRequest() argument 448 this.cid = cid; in DeactivateDataCallRequest() 479 public final int cid; field in DataService.BeginCancelHandoverRequest 481 BeginCancelHandoverRequest(int cid, in BeginCancelHandoverRequest() argument [all …]
|
D | IDataService.aidl | 37 void deactivateDataCall(int slotId, int cid, int reason, IDataServiceCallback callback); in deactivateDataCall() argument 45 void startHandover(int slotId, int cid, IDataServiceCallback callback); in startHandover() argument 46 void cancelHandover(int slotId, int cid, IDataServiceCallback callback); in cancelHandover() argument
|
/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 | 348 private String getCarrierNameFromId(int cid) { in getCarrierNameFromId() argument 354 /* selectionArgs */ new String[]{cid + ""}, null); in getCarrierNameFromId() 359 + " Records(s) in DB" + " cid: " + cid); in getCarrierNameFromId() 466 private void updateCarrierIdAndName(int cid, String name, in updateCarrierIdAndName() argument 507 if (cid != mCarrierId) { in updateCarrierIdAndName() 508 logd("[updateCarrierId] from:" + mCarrierId + " to:" + cid); in updateCarrierIdAndName() 509 mCarrierId = cid; in updateCarrierIdAndName() 612 List<String> privilegeAccessRule, int cid, String name, int parentCid) { in CarrierMatchingRule() argument 622 mCid = cid; in CarrierMatchingRule() 1074 int cid = cursor.getInt(cursor.getColumnIndex(CarrierId.CARRIER_ID)); in getCarrierIdsFromApnQuery() local [all …]
|
/frameworks/base/media/java/android/media/tv/tuner/filter/ |
D | IpCidChangeEvent.java | 33 private IpCidChangeEvent(int cid) { in IpCidChangeEvent() argument 34 mCid = cid; in IpCidChangeEvent()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | CellularDataService.java | 181 public void deactivateDataCall(int cid, int reason, DataServiceCallback callback) { in deactivateDataCall() argument 192 mPhone.mCi.deactivateDataCall(cid, reason, message); in deactivateDataCall() 242 public void startHandover(int cid, DataServiceCallback callback) { in startHandover() argument 251 mPhone.mCi.startHandover(message, cid); in startHandover() 255 public void cancelHandover(int cid, DataServiceCallback callback) { in cancelHandover() argument 263 mPhone.mCi.cancelHandover(message, cid); in cancelHandover()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | CarrierIdMatchStats.java | 35 int cid, String mccMnc, String gid1, String spn, String pnn) { in onCarrierIdMismatch() argument 48 TelephonyStatsLog.write(CARRIER_ID_MISMATCH_REPORTED, cid, mccMnc, gid1, spn, pnn); in onCarrierIdMismatch()
|
/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 | 90 public void setLacAndCid(int lac, int cid) { in setLacAndCid() argument 92 mCid = cid; in setLacAndCid()
|
/frameworks/av/services/tuner/aidl/android/media/tv/tuner/ |
D | TunerFilterMonitorEvent.aidl | 33 int cid;
|
D | ITunerFilter.aidl | 59 void configureIpFilterContextId(in int cid); in configureIpFilterContextId() argument
|
/frameworks/base/telephony/common/com/google/android/mms/pdu/ |
D | PduBody.java | 168 public PduPart getPartByContentId(String cid) { in getPartByContentId() argument 169 return mPartMapByContentId.get(cid); in getPartByContentId()
|
/frameworks/native/libs/binder/ |
D | RpcSocketAddress.h | 62 VsockSocketAddress(unsigned int cid, unsigned int port) in VsockSocketAddress() argument 66 .svm_cid = cid, in VsockSocketAddress()
|