Searched refs:cell (Results 1 – 14 of 14) sorted by relevance
/system/chre/apps/wwan_world/ |
D | wwan_world.cc | 86 void logChreWwanInfo(const chreWwanCellInfo *cell) { in logChreWwanInfo() argument 87 LOGI("Found cell at time %" PRIu64, cell->timeStamp); in logChreWwanInfo() 88 LOGI(" timestamp type %" PRIu8, cell->timeStampType); in logChreWwanInfo() 89 LOGI(" registered %" PRIu8, cell->registered); in logChreWwanInfo() 91 switch (cell->cellInfoType) { in logChreWwanInfo() 94 LOGI(" mcc %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.mcc); in logChreWwanInfo() 95 LOGI(" mnc %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.mnc); in logChreWwanInfo() 96 LOGI(" lac %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.lac); in logChreWwanInfo() 97 LOGI(" cid %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.cid); in logChreWwanInfo() 98 LOGI(" arfcn %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.arfcn); in logChreWwanInfo() [all …]
|
/system/chre/apps/test/chqts/src/general_test/ |
D | cell_info_cdma.cc | 78 bool CellInfoCdma::validate(const struct chreWwanCellInfoCdma &cell) { in validate() argument 79 return (validateIdentity(cell.cellIdentityCdma) && in validate() 80 validateSignalStrengthCdma(cell.signalStrengthCdma) && in validate() 81 validateSignalStrengthEvdo(cell.signalStrengthEvdo)); in validate()
|
D | cell_info_tdscdma.cc | 59 bool CellInfoTdscdma::validate(const struct chreWwanCellInfoTdscdma &cell) { in validate() argument 60 return (validateIdentity(cell.cellIdentityTdscdma) && in validate() 61 validateSignalStrength(cell.signalStrengthTdscdma)); in validate()
|
D | cell_info_wcdma.cc | 66 bool CellInfoWcdma::validate(const struct chreWwanCellInfoWcdma &cell) { in validate() argument 67 return (validateIdentity(cell.cellIdentityWcdma) && in validate() 68 validateSignalStrength(cell.signalStrengthWcdma)); in validate()
|
D | cell_info_gsm.cc | 75 bool CellInfoGsm::validate(const struct chreWwanCellInfoGsm &cell) { in validate() argument 76 return (validateIdentity(cell.cellIdentityGsm) && in validate() 77 validateSignalStrength(cell.signalStrengthGsm)); in validate()
|
D | cell_info_lte.cc | 75 bool CellInfoLte::validate(const struct chreWwanCellInfoLte &cell) { in validate() argument 76 return (validateIdentity(cell.cellIdentityLte) && in validate() 77 validateSignalStrength(cell.signalStrengthLte)); in validate()
|
D | cell_info_nr.cc | 77 bool CellInfoNr::validate(const struct chreWwanCellInfoNr &cell, in validate() argument 79 return (validateIdentity(cell.cellIdentityNr, registered) && in validate() 80 validateSignalStrength(cell.signalStrengthNr)); in validate()
|
D | cell_info_tdscdma.h | 27 static bool validate(const struct chreWwanCellInfoTdscdma &cell);
|
D | cell_info_wcdma.h | 27 static bool validate(const struct chreWwanCellInfoWcdma &cell);
|
D | cell_info_gsm.h | 27 static bool validate(const struct chreWwanCellInfoGsm &cell);
|
D | cell_info_lte.h | 27 static bool validate(const struct chreWwanCellInfoLte &cell);
|
D | cell_info_nr.h | 27 static bool validate(const struct chreWwanCellInfoNr &cell, bool registered);
|
D | cell_info_cdma.h | 27 static bool validate(const struct chreWwanCellInfoCdma &cell);
|
/system/chre/apps/power_test/common/idl/ |
D | chre_power_test.fbs | 62 /// Represents a message to ask the nanoapp to start or stop querying the cell 63 /// modem for the latest cell scan results on the given interval
|