Home
last modified time | relevance | path

Searched refs:MCCMNC_LEN (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/telephony/core_service/services/sim/include/
H A Dsim_utils.h68 MCCMNC_LEN enumerator
H A Dsim_file.h154 const int MCCMNC_LEN = 6; variable
/ohos5.0/base/telephony/core_service/services/sim/src/
H A Dsim_file.cpp574 file->lacStart = stoi(dataOpl.substr(MCCMNC_LEN, HALF_BYTE_LEN), 0, HEXADECIMAL); in ParseOpl()
575 … file->lacEnd = stoi(dataOpl.substr(MCCMNC_LEN + HALF_BYTE_LEN, HALF_BYTE_LEN), 0, HEXADECIMAL); in ParseOpl()
576 … file->pnnRecordId = stoi(dataOpl.substr(MCCMNC_LEN + BYTE_LENGTH, HALF_LEN), 0, HEXADECIMAL); in ParseOpl()
605 file->lacStart = stoi(dataOpl.substr(MCCMNC_LEN, LAC_RANGE_LEN), 0, HEXADECIMAL); in ParseOpl5g()
606 … file->lacEnd = stoi(dataOpl.substr(MCCMNC_LEN + LAC_RANGE_LEN, LAC_RANGE_LEN), 0, HEXADECIMAL); in ParseOpl5g()
607 …file->pnnRecordId = stoi(dataOpl.substr(MCCMNC_LEN + LAC_RANGE_LEN + LAC_RANGE_LEN, HALF_LEN), 0, … in ParseOpl5g()
1212 if (CheckMncLen(imsi, imsiSize, MNC_LEN, MCCMNC_LEN, true)) { in CheckMncLengthForAdDone()
1213 std::string mccMncCode = imsi.substr(0, MCCMNC_LEN); in CheckMncLengthForAdDone()
1256 if (CheckMncLen(imsi, imsiSize, MNC_LEN, MCCMNC_LEN, false)) { in CheckMncLengthForImsiDone()
1257 std::string mccMncCode = imsi.substr(0, MCCMNC_LEN); in CheckMncLengthForImsiDone()
H A Dsim_utils.cpp146 if (static_cast<int>(data.size()) >= (offset + MCCMNC_LEN) && data.at(offset) != 'F') { in BcdPlmnConvertToString()