Home
last modified time | relevance | path

Searched refs:lac (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmCellBroadcastHandler.java113 int lac = -1; in handleGsmBroadcastSms() local
121 lac = cellLocation.getLac(); in handleGsmBroadcastSms()
128 location = new SmsCbLocation(plmn, lac, -1); 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/android/telephony/
DCellIdentityTdscdma.java58 public CellIdentityTdscdma(int mcc, int mnc, int lac, int cid, int cpid) { in CellIdentityTdscdma() argument
59 this(String.valueOf(mcc), String.valueOf(mnc), lac, cid, cpid, null, null); in CellIdentityTdscdma() local
72 public CellIdentityTdscdma(String mcc, String mnc, int lac, int cid, int cpid) { in CellIdentityTdscdma() argument
74 mLac = lac; in CellIdentityTdscdma()
90 public CellIdentityTdscdma(String mcc, String mnc, int lac, int cid, int cpid, in CellIdentityTdscdma() argument
93 mLac = lac; in CellIdentityTdscdma()
DCellIdentityWcdma.java61 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { in CellIdentityWcdma() argument
62 this(lac, cid, psc, Integer.MAX_VALUE, String.valueOf(mcc), String.valueOf(mnc), in CellIdentityWcdma()
77 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { in CellIdentityWcdma() argument
78 this(lac, cid, psc, uarfcn, String.valueOf(mcc), String.valueOf(mnc), null, null); in CellIdentityWcdma()
94 public CellIdentityWcdma (int lac, int cid, int psc, int uarfcn, in CellIdentityWcdma() argument
97 mLac = lac; in CellIdentityWcdma()
DCellIdentityGsm.java60 public CellIdentityGsm(int mcc, int mnc, int lac, int cid) { in CellIdentityGsm() argument
61 this(lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE, in CellIdentityGsm()
76 public CellIdentityGsm(int mcc, int mnc, int lac, int cid, int arfcn, int bsic) { in CellIdentityGsm() argument
77 this(lac, cid, arfcn, bsic, String.valueOf(mcc), String.valueOf(mnc), null, null); in CellIdentityGsm()
93 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr, in CellIdentityGsm() argument
96 mLac = lac; in CellIdentityGsm()
/frameworks/base/telephony/java/com/android/internal/telephony/
DSmsCbLocation.java62 public SmsCbLocation(String plmn, int lac, int cid) { in SmsCbLocation() argument
64 mLac = lac; in SmsCbLocation()
150 public boolean isInLocationArea(String plmn, int lac, int cid) { in isInLocationArea() argument
155 if (mLac != -1 && mLac != lac) { in isInLocationArea()
/frameworks/base/telephony/java/android/telephony/gsm/
DGsmCellLocation.java85 public void setLacAndCid(int lac, int cid) { in setLacAndCid() argument
86 mLac = lac; in setLacAndCid()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java311 result = new CellIdentityGsm(cellIdentityGsm.lac, cellIdentityGsm.cid, in convertHalCellIdentityToCellIdentity()
321 result = new CellIdentityWcdma(cellIdentityWcdma.lac, cellIdentityWcdma.cid, in convertHalCellIdentityToCellIdentity()
332 cellIdentityTdscdma.mnc, cellIdentityTdscdma.lac, in convertHalCellIdentityToCellIdentity()
381 cellIdentityGsm.base.lac, in convertHalCellIdentityToCellIdentity()
398 cellIdentityWcdma.base.lac, in convertHalCellIdentityToCellIdentity()
417 cellIdentityTdscdma.base.lac, in convertHalCellIdentityToCellIdentity()
DServiceStateTracker.java910 int lac = -1; in processCellLocationInfo() local
915 lac = ((CellIdentityGsm) cellIdentity).getLac(); in processCellLocationInfo()
920 lac = ((CellIdentityWcdma) cellIdentity).getLac(); in processCellLocationInfo()
926 lac = ((CellIdentityTdscdma) cellIdentity).getLac(); in processCellLocationInfo()
931 lac = ((CellIdentityLte) cellIdentity).getTac(); in processCellLocationInfo()
940 ((GsmCellLocation) cellLocation).setLacAndCid(lac, cid); in processCellLocationInfo()
DRIL.java5229 Parcel p, int lac, int cid, int arfcn, int bsic, String mcc, String mnc, in writeToParcelForGsm() argument
5236 p.writeInt(lac); in writeToParcelForGsm()
5274 Parcel p, int lac, int cid, int psc, int uarfcn, String mcc, String mnc, in writeToParcelForWcdma() argument
5281 p.writeInt(lac); in writeToParcelForWcdma()
5312 cellInfoGsm.cellIdentityGsm.lac, in convertHalCellInfoList()
5371 cellInfoWcdma.cellIdentityWcdma.lac, in convertHalCellInfoList()
5420 cellInfoGsm.cellIdentityGsm.base.lac, in convertHalCellInfoList_1_2()
5479 cellInfoWcdma.cellIdentityWcdma.base.lac, in convertHalCellInfoList_1_2()
/frameworks/opt/telephony/src/java/android/telephony/
DCellBroadcastMessage.java153 int lac; in createFromCursor() local
156 lac = cursor.getInt(lacColumn); in createFromCursor()
158 lac = -1; in createFromCursor()
169 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid); in createFromCursor()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java1118 cellinfo.cellIdentityGsm.lac = LAC; in testConvertHalCellInfoListForGSM()
1159 cellinfo.cellIdentityWcdma.lac = LAC; in testConvertHalCellInfoListForWcdma()
1528 cellinfo.cellIdentityGsm.base.lac = LAC; in getCellInfoListForGSM()
1557 cellinfo.cellIdentityWcdma.base.lac = LAC; in getCellInfoListForWcdma()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp1453 JNIEnv* /* env */, jobject /* obj */, jint type, jint mcc, jint mnc, jint lac, jint cid) { in android_location_GnssLocationProvider_agps_set_reference_location_cellid() argument
1467 location.cellID.lac = lac; in android_location_GnssLocationProvider_agps_set_reference_location_cellid()
/frameworks/base/services/core/java/com/android/server/location/
DGnssLocationProvider.java2769 int lac, int cid);