Searched refs:lac (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsCbLocation.java62 public SmsCbLocation(String plmn, int lac, int cid) { argument
64 mLac = lac;
146 * @param lac the Location Area (GSM) or Service Area (UMTS) to compare with
150 public boolean isInLocationArea(String plmn, int lac, int cid) { argument
155 if (mLac != -1 && mLac != lac) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java111 int lac = -1;
119 lac = cellLocation.getLac();
126 location = new SmsCbLocation(plmn, lac, -1);
131 location = new SmsCbLocation(plmn, lac, cid);
183 if (!info.matchesLocation(plmn, lac, cid)) {
235 * @param lac the current Location Area (GSM) or Service Area (UMTS)
239 public boolean matchesLocation(String plmn, int lac, int cid) { argument
240 return mLocation.isInLocationArea(plmn, lac, cid);
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java43 mLac = bundle.getInt("lac", -1);
85 public void setLacAndCid(int lac, int cid) { argument
86 mLac = lac;
143 m.putInt("lac", mLac);
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityGsm.java61 * @param lac 16-bit Location Area Code, 0..65535
66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) { argument
67 this(mcc, mnc, lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE);
74 * @param lac 16-bit Location Area Code, 0..65535
81 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int bsic) { argument
84 mLac = lac;
H A DCellIdentityWcdma.java61 * @param lac 16-bit Location Area Code, 0..65535
67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { argument
68 this(mcc, mnc, lac, cid, psc, Integer.MAX_VALUE);
75 * @param lac 16-bit Location Area Code, 0..65535
82 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { argument
85 mLac = lac;
/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java153 int lac;
156 lac = cursor.getInt(lacColumn);
158 lac = -1;
169 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java921 int lac = -1;
928 lac = cellIdentityGsm.lac;
937 lac = cellIdentityWcdma.lac;
948 lac = cellIdentityTdscdma.lac;
958 /* Continuing the historical behaviour of using tac as lac. */
959 lac = cellIdentityLte.tac;
968 ((GsmCellLocation) cellLocation).setLacAndCid(lac, ci
[all...]
H A DRIL.java4849 p.writeInt(cellInfoGsm.cellIdentityGsm.lac);
4895 p.writeInt(cellInfoWcdma.cellIdentityWcdma.lac);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp1319 JNIEnv* /* env */, jobject /* obj */, jint type, jint mcc, jint mnc, jint lac, jint cid) {
1333 location.cellID.lac = lac;
1318 android_location_GnssLocationProvider_agps_set_reference_location_cellid( JNIEnv* , jobject , jint type, jint mcc, jint mnc, jint lac, jint cid) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DServiceStateTrackerTest.java382 result.cellIdentity.cellIdentityGsm.get(0).lac = 2;
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java2551 int lac, int cid);
2550 native_agps_set_ref_location_cellid(int type, int mcc, int mnc, int lac, int cid) argument

Completed in 297 milliseconds