HomeSort by relevance Sort by last modified time
    Searched refs:bsic (Results 1 - 12 of 12) sorted by null

  /system/chre/apps/chqts/src/general_test/
cell_info_gsm.cc 37 } else if ((identity.bsic > 63) && (identity.bsic != UINT8_MAX)) {
39 identity.bsic);
  /frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.java 72 * @param bsic 6-bit Base Station Identity Code
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);
85 * @param bsic 6-bit Base Station Identity Code
93 public CellIdentityGsm(int lac, int cid, int arfcn, int bsic, String mccStr,
99 // In RIL BSIC is a UINT8, so 0xFF is the 'INVALID' designator
101 mBsic = (bsic == 0xFF) ? Integer.MAX_VALUE : bsic;
  /system/chre/chre_api/include/chre_api/chre/
wwan.h 106 uint8_t bsic; member in struct:chreWwanCellIdentityGsm
  /system/chre/chre_api/legacy/v1_1/chre/
wwan.h 106 uint8_t bsic; member in struct:chreWwanCellIdentityGsm
  /system/chre/apps/wwan_world/
wwan_world.cc 86 LOGI(" bsic %" PRIu8, cell->CellInfo.gsm.cellIdentityGsm.bsic);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CellularNetworkService.java 312 cellIdentityGsm.arfcn, cellIdentityGsm.bsic, cellIdentityGsm.mcc,
384 cellIdentityGsm.base.bsic,
RIL.java     [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java 584 int bsic = gsm.getBsic(); local
585 // TODO(b/32774471) - Bsic should always be valid
586 //assertTrue("getBsic() out of range [0,63]", bsic >= 0 && bsic <=63);
  /hardware/ril/include/telephony/
ril.h 1374 uint8_t bsic; \/* 6-bit Base Station Identity Code; 0xFF if unknown *\/ member in struct:__anon52723
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
RILTest.java 173 private static final int BSIC = 8;
    [all...]
  /hardware/interfaces/radio/1.0/
types.hal     [all...]
  /hardware/ril/libril/
ril_service.cpp     [all...]

Completed in 516 milliseconds