/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityTdscdma.java | 74 public CellIdentityTdscdma(String mcc, String mnc, int lac, int cid, int cpid, int uarfcn, in CellIdentityTdscdma() argument 78 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityTdscdma() 83 private CellIdentityTdscdma(CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 84 this(cid.mMccStr, cid.mMncStr, cid.mLac, cid.mCid, in CellIdentityTdscdma() 85 cid.mCpid, cid.mUarfcn, cid.mAlphaLong, cid.mAlphaShort); in CellIdentityTdscdma() 89 public CellIdentityTdscdma(android.hardware.radio.V1_0.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 90 this(cid.mcc, cid.mnc, cid.lac, cid.cid, cid.cpid, CellInfo.UNAVAILABLE, "", ""); in CellIdentityTdscdma() 94 public CellIdentityTdscdma(android.hardware.radio.V1_2.CellIdentityTdscdma cid) { in CellIdentityTdscdma() argument 95 this(cid.base.mcc, cid.base.mnc, cid.base.lac, cid.base.cid, cid.base.cpid, in CellIdentityTdscdma() 96 cid.uarfcn, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in CellIdentityTdscdma() [all …]
|
D | CellIdentityGsm.java | 73 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr, in CellIdentityGsm() argument 77 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityGsm() 83 public CellIdentityGsm(android.hardware.radio.V1_0.CellIdentityGsm cid) { in CellIdentityGsm() argument 84 this(cid.lac, cid.cid, cid.arfcn, in CellIdentityGsm() 85 cid.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.bsic, in CellIdentityGsm() 86 cid.mcc, cid.mnc, "", ""); in CellIdentityGsm() 90 public CellIdentityGsm(android.hardware.radio.V1_2.CellIdentityGsm cid) { in CellIdentityGsm() argument 91 this(cid.base.lac, cid.base.cid, cid.base.arfcn, in CellIdentityGsm() 92 cid.base.bsic == (byte) 0xFF ? CellInfo.UNAVAILABLE : cid.base.bsic, cid.base.mcc, in CellIdentityGsm() 93 cid.base.mnc, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in CellIdentityGsm() [all …]
|
D | CellIdentityWcdma.java | 73 public CellIdentityWcdma (int lac, int cid, int psc, int uarfcn, in CellIdentityWcdma() argument 77 mCid = inRangeOrUnavailable(cid, 0, MAX_CID); in CellIdentityWcdma() 83 public CellIdentityWcdma(android.hardware.radio.V1_0.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 84 this(cid.lac, cid.cid, cid.psc, cid.uarfcn, cid.mcc, cid.mnc, "", ""); in CellIdentityWcdma() 88 public CellIdentityWcdma(android.hardware.radio.V1_2.CellIdentityWcdma cid) { in CellIdentityWcdma() argument 89 this(cid.base.lac, cid.base.cid, cid.base.psc, cid.base.uarfcn, in CellIdentityWcdma() 90 cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityWcdma() 91 cid.operatorNames.alphaShort); in CellIdentityWcdma() 94 private CellIdentityWcdma(CellIdentityWcdma cid) { in CellIdentityWcdma() argument 95 this(cid.mLac, cid.mCid, cid.mPsc, cid.mUarfcn, cid.mMccStr, in CellIdentityWcdma() [all …]
|
D | CellIdentityLte.java | 106 public CellIdentityLte(android.hardware.radio.V1_0.CellIdentityLte cid) { in CellIdentityLte() argument 107 this(cid.ci, cid.pci, cid.tac, cid.earfcn, CellInfo.UNAVAILABLE, cid.mcc, cid.mnc, "", ""); in CellIdentityLte() 111 public CellIdentityLte(android.hardware.radio.V1_2.CellIdentityLte cid) { in CellIdentityLte() argument 112 this(cid.base.ci, cid.base.pci, cid.base.tac, cid.base.earfcn, cid.bandwidth, in CellIdentityLte() 113 cid.base.mcc, cid.base.mnc, cid.operatorNames.alphaLong, in CellIdentityLte() 114 cid.operatorNames.alphaShort); in CellIdentityLte() 117 private CellIdentityLte(CellIdentityLte cid) { in CellIdentityLte() argument 118 this(cid.mCi, cid.mPci, cid.mTac, cid.mEarfcn, cid.mBandwidth, cid.mMccStr, in CellIdentityLte() 119 cid.mMncStr, cid.mAlphaLong, cid.mAlphaShort); in CellIdentityLte() 239 int cid = mCi != CellInfo.UNAVAILABLE ? mCi : -1; in asCellLocation() local [all …]
|
D | CellIdentityCdma.java | 110 public CellIdentityCdma(android.hardware.radio.V1_0.CellIdentityCdma cid) { in CellIdentityCdma() argument 111 this(cid.networkId, cid.systemId, cid.baseStationId, cid.longitude, cid.latitude, "", ""); in CellIdentityCdma() 115 public CellIdentityCdma(android.hardware.radio.V1_2.CellIdentityCdma cid) { in CellIdentityCdma() argument 116 this(cid.base.networkId, cid.base.systemId, cid.base.baseStationId, cid.base.longitude, in CellIdentityCdma() 117 cid.base.latitude, cid.operatorNames.alphaLong, cid.operatorNames.alphaShort); in CellIdentityCdma() 120 private CellIdentityCdma(CellIdentityCdma cid) { in CellIdentityCdma() argument 121 this(cid.mNetworkId, cid.mSystemId, cid.mBasestationId, cid.mLongitude, cid.mLatitude, in CellIdentityCdma() 122 cid.mAlphaLong, cid.mAlphaShort); in CellIdentityCdma()
|
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 | 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 | 94 public void setCellIdentity(CellIdentityLte cid) { in setCellIdentity() argument 95 if (DBG) log("setCellIdentity: " + cid); in setCellIdentity() 96 mCellIdentityLte = cid; in setCellIdentity()
|
D | CellInfoWcdma.java | 83 public void setCellIdentity(CellIdentityWcdma cid) { in setCellIdentity() argument 84 mCellIdentityWcdma = cid; in setCellIdentity()
|
D | CellInfoGsm.java | 84 public void setCellIdentity(CellIdentityGsm cid) { in setCellIdentity() argument 85 mCellIdentityGsm = cid; in setCellIdentity()
|
D | CellInfoTdscdma.java | 87 public void setCellIdentity(CellIdentityTdscdma cid) { in setCellIdentity() argument 88 mCellIdentityTdscdma = cid; in setCellIdentity()
|
D | CellInfoCdma.java | 90 public void setCellIdentity(CellIdentityCdma cid) { in setCellIdentity() argument 91 mCellIdentityCdma = cid; in setCellIdentity()
|
/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 | 278 private String getCarrierNameFromId(int cid) { in getCarrierNameFromId() argument 284 /* selectionArgs */ new String[]{cid + ""}, null); in getCarrierNameFromId() 289 + " Records(s) in DB" + " cid: " + cid); in getCarrierNameFromId() 396 private void updateCarrierIdAndName(int cid, String name, in updateCarrierIdAndName() argument 437 if (cid != mCarrierId) { in updateCarrierIdAndName() 438 logd("[updateCarrierId] from:" + mCarrierId + " to:" + cid); in updateCarrierIdAndName() 439 mCarrierId = cid; in updateCarrierIdAndName() 542 List<String> privilegeAccessRule, int cid, String name, int parentCid) { in CarrierMatchingRule() argument 552 mCid = cid; in CarrierMatchingRule() 975 int cid = cursor.getInt(cursor.getColumnIndex(CarrierId.CARRIER_ID)); in getCarrierIdsFromApnQuery() local [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmCellBroadcastHandler.java | 114 int cid = -1; in handleGsmBroadcastSms() local 122 cid = cellLocation.getCid(); in handleGsmBroadcastSms() 133 location = new SmsCbLocation(plmn, lac, cid); in handleGsmBroadcastSms() 187 if (!info.matchesLocation(plmn, lac, cid)) { in handleGsmBroadcastSms() 243 public boolean matchesLocation(String plmn, int lac, int cid) { in matchesLocation() argument 244 return mLocation.isInLocationArea(plmn, lac, cid); in matchesLocation()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | SmsCbLocation.java | 62 public SmsCbLocation(String plmn, int lac, int cid) { in SmsCbLocation() argument 65 mCid = cid; in SmsCbLocation() 150 public boolean isInLocationArea(String plmn, int lac, int cid) { in isInLocationArea() argument 159 if (mCid != -1 && mCid != cid) { in isInLocationArea()
|
/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() 515 public void deactivateDataCall(int slotIndex, int cid, int reason, in deactivateDataCall() argument 518 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/opt/telephony/src/java/com/google/android/mms/pdu/ |
D | PduBody.java | 157 public PduPart getPartByContentId(String cid) { in getPartByContentId() argument 158 return mPartMapByContentId.get(cid); in getPartByContentId()
|
/frameworks/opt/telephony/src/java/android/telephony/ |
D | CellBroadcastMessage.java | 164 int cid; in createFromCursor() local 167 cid = cursor.getInt(cidColumn); in createFromCursor() 169 cid = -1; in createFromCursor() 172 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in createFromCursor()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | CellularDataService.java | 146 public void deactivateDataCall(int cid, int reason, DataServiceCallback callback) { in deactivateDataCall() argument 157 mPhone.mCi.deactivateDataCall(cid, reason, message); in deactivateDataCall()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | TelephonyMetrics.java | 1369 public void writeRilDeactivateDataCall(int phoneId, int rilSerial, int cid, int reason) { in writeRilDeactivateDataCall() argument 1372 deactivateDataCall.cid = cid; in writeRilDeactivateDataCall() 1398 public void writeRilDataCallEvent(int phoneId, int cid, in writeRilDataCallEvent() argument 1402 dataCalls[0].cid = cid; in writeRilDataCallEvent() 1409 if (mLastRilDataCallEvents.get(phoneId).get(cid) != null in writeRilDataCallEvent() 1411 RilDataCall.toByteArray(mLastRilDataCallEvents.get(phoneId).get(cid)), in writeRilDataCallEvent() 1420 dataCallList.put(cid, dataCalls[0]); in writeRilDataCallEvent() 1692 dataCall.cid = response.getId(); in writeOnSetupDataCallResponse() 2449 public void writeCarrierIdMatchingEvent(int phoneId, int version, int cid, in writeCarrierIdMatchingEvent() argument 2456 if (cid != TelephonyManager.UNKNOWN_CARRIER_ID) { in writeCarrierIdMatchingEvent() [all …]
|
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/ |
D | buffer_hub_base.h | 73 int cid() const { return cid_; } in cid() function
|