Home
last modified time | relevance | path

Searched refs:NextIntFromHex (Results 1 – 3 of 3) sorted by relevance

/base/telephony/ril_adapter/services/vendor/include/
Dvendor_util.h77 int32_t NextIntFromHex(char **s, int32_t *out);
/base/telephony/ril_adapter/services/vendor/src/
Dat_network.c189 if (NextIntFromHex(&str, &(info[REG_LAC_POS])) != 0) { in ExtractRegStatus()
192 if (NextIntFromHex(&str, &(info[REG_CELL_ID_POS])) != 0) { in ExtractRegStatus()
882 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.gsm.cellId) < 0) { in ParseCellInfoGsm()
885 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.gsm.lac) < 0) { in ParseCellInfoGsm()
913 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.lte.pci) < 0) { in ParseCellInfoLte()
1192 NextIntFromHex(&line, &response->ServiceCellParas.gsm.cellId); in ParseGetGsmCellInfoLine()
1193 NextIntFromHex(&line, &response->ServiceCellParas.gsm.lac); in ParseGetGsmCellInfoLine()
1211 NextIntFromHex(&line, &response->ServiceCellParas.lte.cellId); in ParseGetLteCellInfoLine()
1212 NextIntFromHex(&line, &response->ServiceCellParas.lte.pci); in ParseGetLteCellInfoLine()
1213 NextIntFromHex(&line, &response->ServiceCellParas.lte.tac); in ParseGetLteCellInfoLine()
[all …]
Dvendor_util.c274 int32_t NextIntFromHex(char **s, int32_t *out) in NextIntFromHex() function