HomeSort by relevance Sort by last modified time
    Searched full:lac (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/rrlp_components/
LAC.java 36 public class LAC extends Asn1Integer {
42 public LAC() {
68 * Creates a new LAC from encoded stream.
70 public static LAC fromPerUnaligned(byte[] encodedBytes) {
71 LAC result = new LAC();
77 * Creates a new LAC from encoded stream.
79 public static LAC fromPerAligned(byte[] encodedBytes) {
80 LAC result = new LAC();
    [all...]
CellIDAndLAC.java 100 private LAC referenceLAC_;
101 public LAC getReferenceLAC() {
105 * @throws ClassCastException if value is not a LAC
108 this.referenceLAC_ = (LAC) value;
110 public LAC setReferenceLACToNewInstance() {
111 referenceLAC_ = new LAC();
162 return tag == null ? LAC.getPossibleFirstTags() : ImmutableList.of(tag);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CellIdentityGsmTest.java 30 private static final int LAC = 65535;
48 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, MNC_STR,
51 assertEquals(LAC, ci.getLac());
69 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithThreeDigit,
83 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, mncWithTwoDigit,
96 new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, null, ALPHA_LONG, ALPHA_SHORT);
104 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT);
112 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT);
120 ci = new CellIdentityGsm(LAC, CID, ARFCN, BSIC, "", "", ALPHA_LONG, ALPHA_SHORT);
132 new CellIdentityGsm(MCC, MNC, LAC, CID)
    [all...]
CellIdentityWcdmaTest.java 30 private static final int LAC = 65535;
47 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, MNC_STR,
50 assertEquals(LAC, ci.getLac());
68 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, mncWithThreeDigit,
82 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, mncWithTwoDigit,
96 new CellIdentityWcdma(LAC, CID, PSC, UARFCN, null, null, ALPHA_LONG, ALPHA_SHORT);
104 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, MCC_STR, null, ALPHA_LONG, ALPHA_SHORT);
112 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, null, MNC_STR, ALPHA_LONG, ALPHA_SHORT);
120 ci = new CellIdentityWcdma(LAC, CID, PSC, UARFCN, "", "", ALPHA_LONG, ALPHA_SHORT);
132 new CellIdentityWcdma(MCC, MNC, LAC, CID, PSC)
    [all...]
CellIdentityTdscdmaTest.java 45 private static final int LAC = 65535;
55 new CellIdentityTdscdma(MCC_STR, MNC_STR, LAC, CID, CPID);
59 assertEquals(LAC, ci.getLac());
66 CellIdentityTdscdma ci = new CellIdentityTdscdma(null, null, LAC, CID, CPID);
71 ci = new CellIdentityTdscdma(MCC_STR, null, LAC, CID, CPID);
76 ci = new CellIdentityTdscdma(null, MNC_STR, LAC, CID, CPID);
81 ci = new CellIdentityTdscdma("", "", LAC, CID, CPID);
89 CellIdentityTdscdma ci = new CellIdentityTdscdma(MCC_STR, MNC_STR, LAC, CID, CPID);
102 new CellIdentityTdscdma(null, null, LAC, CID, CPID, ALPHA_LONG, ALPHA_SHORT);
110 p.writeInt(LAC);
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
cell_configurations.py 144 'lac': 31,
155 'lac': 32,
166 'lac': 33,
177 'lac': 34,
188 'lac': 35,
199 'lac': 36,
210 'lac': 37,
221 'lac': 38,
232 'lac': 39,
243 'lac': 51
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/avr/
rmw.s 23 lac Z, r12
rmw.d 17 c: c6 92 lac Z, r12
  /frameworks/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 31 * Empty constructor. Initializes the LAC and CID to -1.
43 mLac = bundle.getInt("lac", -1);
85 public void setLacAndCid(int lac, int cid) {
86 mLac = lac;
143 m.putInt("lac", mLac);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 113 int lac = -1; local
121 lac = cellLocation.getLac();
128 location = new SmsCbLocation(plmn, lac, -1);
133 location = new SmsCbLocation(plmn, lac, cid);
187 if (!info.matchesLocation(plmn, lac, cid)) {
225 // location (PLMN, plus LAC and CID if these are part of the geographical scope).
235 * relative to the geographical scope of the message, which determines whether the LAC
239 * @param lac the current Location Area (GSM) or Service Area (UMTS)
243 public boolean matchesLocation(String plmn, int lac, int cid) {
244 return mLocation.isInLocationArea(plmn, lac, cid)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsCbLocation.java 59 * Construct a location object for the PLMN, LAC, and Cell ID. This class is immutable, so
62 public SmsCbLocation(String plmn, int lac, int cid) {
64 mLac = lac;
146 * @param lac the Location Area (GSM) or Service Area (UMTS) to compare with
148 * @return true if this location is contained within the specified PLMN, LAC, and Cell ID
150 public boolean isInLocationArea(String plmn, int lac, int cid) {
155 if (mLac != -1 && mLac != lac) {
  /frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.java 55 * @param lac 16-bit Location Area Code, 0..65535
60 public CellIdentityGsm(int mcc, int mnc, int lac, int cid) {
61 this(lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE,
69 * @param lac 16-bit Location Area Code, 0..65535
76 public CellIdentityGsm(int mcc, int mnc, int lac, int cid, int arfcn, int bsic) {
77 this(lac, cid, arfcn, bsic, String.valueOf(mcc), String.valueOf(mnc), null, null);
82 * @param lac 16-bit Location Area Code, 0..65535
93 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr,
96 mLac = lac;
CellIdentityTdscdma.java 52 * @param lac 16-bit Location Area Code, 0..65535, INT_MAX if unknown
58 public CellIdentityTdscdma(int mcc, int mnc, int lac, int cid, int cpid) {
59 this(String.valueOf(mcc), String.valueOf(mnc), lac, cid, cpid, null, null); local
65 * @param lac 16-bit Location Area Code, 0..65535, INT_MAX if unknown
72 public CellIdentityTdscdma(String mcc, String mnc, int lac, int cid, int cpid) {
74 mLac = lac;
82 * @param lac 16-bit Location Area Code, 0..65535, INT_MAX if unknown
90 public CellIdentityTdscdma(String mcc, String mnc, int lac, int cid, int cpid,
93 mLac = lac;
CellIdentityWcdma.java 55 * @param lac 16-bit Location Area Code, 0..65535
61 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
62 this(lac, cid, psc, Integer.MAX_VALUE, String.valueOf(mcc), String.valueOf(mnc),
70 * @param lac 16-bit Location Area Code, 0..65535
77 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) {
78 this(lac, cid, psc, uarfcn, String.valueOf(mcc), String.valueOf(mnc), null, null);
83 * @param lac 16-bit Location Area Code, 0..65535
94 public CellIdentityWcdma (int lac, int cid, int psc, int uarfcn,
97 mLac = lac;
  /system/chre/apps/chqts/src/general_test/
cell_info_tdscdma.cc 30 } else if (!isBoundedInt32(identity.lac, 0, 65535, INT32_MAX)) {
32 "Invalid TDSCDMA Location Area Code: %d", identity.lac);
cell_info_wcdma.cc 30 } else if (!isBoundedInt32(identity.lac, 0, 65535, INT32_MAX)) {
32 "Invalid WCDMA Location Area Code: %d", identity.lac);
cell_info_gsm.cc 30 } else if (!isBoundedInt32(identity.lac, 0, 65535, INT32_MAX)) {
31 sendFatalFailureInt32("Invalid GSM Location Area Code", identity.lac);
  /hardware/interfaces/gnss/1.0/
IAGnssRil.hal 65 * Location Area Code in 2G, 3G and LTE. In 3G lac is discarded. In LTE,
66 * lac is populated with tac, to ensure that we don't break old clients that
69 uint16_t lac;
  /external/valgrind/none/tests/mips64/
cvm_atomic_thread.stdout.exp 18 lac and saa: base1: 0, base2: 0
  /system/chre/apps/wwan_world/
wwan_world.cc 83 LOGI(" lac %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.lac);
92 LOGI(" lac %" PRId32, cell->CellInfo.wcdma.cellIdentityWcdma.lac);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
octeon2.s 34 lac $13,($28)
octeon2.d 34 .* 73806b9f lac \$13,\(\$28\)
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 96 private static final int LAC = 65535;
443 int lac = wcdma.getLac(); local
444 assertTrue("getLac() out of range [0, 65535], lac=" + lac,
445 (lac >= 0 && lac <= LAC) || lac == Integer.MAX_VALUE);
542 int lac = gsm.getLac(); local
543 assertTrue("getLac() out of range [0, 65535], lac=" + lac
    [all...]
  /hardware/interfaces/gnss/1.0/default/
AGnssRil.cpp 103 .lac = cellID.lac,
  /external/scapy/scapy/contrib/
gtp.uts 64 ie.ietype == 3 and ie.MCC == b'234' and ie.MNC == b'02' and ie.LAC == 1234 and ie.RAC == 123
67 ie = IE_Routing(MCC='234', MNC='02', LAC=1234, RAC=123)
68 ie.ietype == 3 and ie.MCC == b'234' and ie.MNC == b'02' and ie.LAC == 1234 and ie.RAC == 123
250 ie.MCC == b'234' and ie.MNC == b'02' and ie.LAC == 1234 and ie.SAC == 1234
253 ie = IE_UserLocationInformation(MCC='234', MNC='02', LAC=1234, SAC=1234)
254 ie.ietype == 152 and ie.MCC == b'234' and ie.MNC == b'02' and ie.LAC == 1234 and ie.SAC == 1234

Completed in 744 milliseconds

1 2 3 4 5 6 7 8 910