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()
884 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.gsm.cellId) < 0) { in ParseCellInfoGsm()
887 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.gsm.lac) < 0) { in ParseCellInfoGsm()
915 if (NextIntFromHex(&pStr, &ci->ServiceCellParas.lte.pci) < 0) { in ParseCellInfoLte()
1197 NextIntFromHex(&line, &response->ServiceCellParas.gsm.cellId); in ParseGetGsmCellInfoLine()
1198 NextIntFromHex(&line, &response->ServiceCellParas.gsm.lac); in ParseGetGsmCellInfoLine()
1216 NextIntFromHex(&line, &response->ServiceCellParas.lte.cellId); in ParseGetLteCellInfoLine()
1217 NextIntFromHex(&line, &response->ServiceCellParas.lte.pci); in ParseGetLteCellInfoLine()
1218 NextIntFromHex(&line, &response->ServiceCellParas.lte.tac); in ParseGetLteCellInfoLine()
[all …]
Dvendor_util.c274 int32_t NextIntFromHex(char **s, int32_t *out) in NextIntFromHex() function