Home
last modified time | relevance | path

Searched refs:tac (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/core/jni/gnss/
DAGnssRil.cpp48 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()
DAGnssRil.h41 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/
DCellIdentityLte.java95 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()
DCellIdentityNr.java81 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/
DGnssNative.java1027 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/
DLinkBandwidthEstimator.java1138 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/
DGnssLocationProvider.java1536 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/
Dcom_android_server_location_GnssLocationProvider.cpp413 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/
DFakeGnssHal.java701 int tac, int pcid, int arfcn) {} in setAgpsReferenceLocationCellId() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRILUtils.java2694 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/
DRILTest.java1566 cellIdentity0.tac = TAC; in getCellIdentityLte_1_2()
2247 cellinfo.cellidentity.tac = TAC; in testConvertHalCellInfoList_1_4ForNr()