/frameworks/base/services/core/jni/gnss/ |
D | AGnssRil.cpp | 48 jboolean AGnssRil::setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, in setRefLocation() argument 62 location.cellID.tac = static_cast<int>(tac); in setRefLocation() 124 jboolean AGnssRil_V1_0::setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, in setRefLocation() argument 137 location.cellID.tac = static_cast<uint16_t>(tac); in setRefLocation()
|
D | AGnssRil.h | 41 virtual jboolean setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, 55 jboolean setRefLocation(jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, jint pcid,
|
/frameworks/base/telephony/java/android/telephony/ |
D | CellIdentityLte.java | 95 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac) { in CellIdentityLte() argument 96 this(ci, pci, tac, CellInfo.UNAVAILABLE, new int[] {}, CellInfo.UNAVAILABLE, in CellIdentityLte() 117 public CellIdentityLte(int ci, int pci, int tac, int earfcn, @NonNull int[] bands, in CellIdentityLte() argument 125 mTac = inRangeOrUnavailable(tac, 0, MAX_TAC); in CellIdentityLte() 302 int tac = mTac != CellInfo.UNAVAILABLE ? mTac : -1; in asCellLocation() local 304 cl.setLacAndCid(tac, cid); in asCellLocation()
|
D | CellIdentityNr.java | 81 public CellIdentityNr(int pci, int tac, int nrArfcn, @NonNull @NgranBand int[] bands, in CellIdentityNr() argument 87 mTac = inRangeOrUnavailable(tac, 0, MAX_TAC); in CellIdentityNr() 128 int tac = mTac != CellInfo.UNAVAILABLE ? mTac : -1; in asCellLocation() local 129 cl.setLacAndCid(tac, -1); in asCellLocation()
|
/frameworks/base/services/core/java/com/android/server/location/gnss/hal/ |
D | GnssNative.java | 1027 int mnc, int lac, long cid, int tac, int pcid, int arfcn) { in setAgpsReferenceLocationCellId() argument 1029 mGnssHal.setAgpsReferenceLocationCellId(type, mcc, mnc, lac, cid, tac, pcid, arfcn); in setAgpsReferenceLocationCellId() 1557 int mnc, int lac, long cid, int tac, int pcid, int arfcn) { in setAgpsReferenceLocationCellId() argument 1558 native_agps_set_ref_location_cellid(type, mcc, mnc, lac, cid, tac, pcid, arfcn); in setAgpsReferenceLocationCellId() 1711 int lac, long cid, int tac, int pcid, int arfcn); in native_agps_set_ref_location_cellid() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/ |
D | LinkBandwidthEstimator.java | 1138 NetworkKey(String plmn, int tac, String dataRat) { in NetworkKey() argument 1140 mTac = tac; in NetworkKey() 1176 public NetworkBandwidth lookupNetwork(@NonNull String plmn, int tac, String dataRat) { in lookupNetwork() argument 1181 NetworkKey key = new NetworkKey(plmn, tac, dataRat); in lookupNetwork()
|
/frameworks/base/services/core/java/com/android/server/location/gnss/ |
D | GnssLocationProvider.java | 1536 int tac = CellInfo.UNAVAILABLE; in setRefLocation() local 1555 tac = cil.getTac(); in setRefLocation() 1561 tac = cin.getTac(); in setRefLocation() 1569 type, mcc, mnc, lac, cid, tac, pcid, arfcn); in setRefLocation()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_location_GnssLocationProvider.cpp | 413 JNIEnv* /* env */, jclass, jint type, jint mcc, jint mnc, jint lac, jlong cid, jint tac, in android_location_gnss_hal_GnssNative_agps_set_reference_location_cellid() argument 419 agnssRilIface->setRefLocation(type, mcc, mnc, lac, cid, tac, pcid, arfcn); in android_location_gnss_hal_GnssNative_agps_set_reference_location_cellid()
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/gnss/hal/ |
D | FakeGnssHal.java | 701 int tac, int pcid, int arfcn) {} in setAgpsReferenceLocationCellId() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RILUtils.java | 2694 return new CellIdentityLte(ci.base.ci, ci.base.pci, ci.base.tac, ci.base.earfcn, in convertHalCellIdentityLte() 2701 return new CellIdentityLte(ci.base.base.ci, ci.base.base.pci, ci.base.base.tac, in convertHalCellIdentityLte() 2718 return new CellIdentityLte(cid.ci, cid.pci, cid.tac, cid.earfcn, cid.bands, cid.bandwidth, in convertHalCellIdentityLte() 2810 return new CellIdentityNr(ci.pci, ci.tac, ci.nrarfcn, new int[] {}, ci.mcc, ci.mnc, in convertHalCellIdentityNr() 2816 return new CellIdentityNr(ci.base.pci, ci.base.tac, ci.base.nrarfcn, in convertHalCellIdentityNr() 2832 return new CellIdentityNr(cid.pci, cid.tac, cid.nrarfcn, cid.bands, cid.mcc, cid.mnc, in convertHalCellIdentityNr()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 1566 cellIdentity0.tac = TAC; in getCellIdentityLte_1_2() 2247 cellinfo.cellidentity.tac = TAC; in testConvertHalCellInfoList_1_4ForNr()
|