Home
last modified time | relevance | path

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

/base/telephony/core_service/services/sim/include/
Dsim_utils.h59 MCCMNC_LEN enumerator
Dsim_file.h124 const int MCCMNC_LEN = 6; variable
/base/telephony/core_service/services/sim/src/
Dsim_file.cpp453 file->lacStart = stoi(dataOpl.substr(MCCMNC_LEN, HALF_BYTE_LEN), 0, base); in ParseOpl()
454 file->lacEnd = stoi(dataOpl.substr(MCCMNC_LEN + HALF_BYTE_LEN, HALF_BYTE_LEN), 0, base); in ParseOpl()
455 file->pnnRecordId = stoi(dataOpl.substr(MCCMNC_LEN + BYTE_LENGTH, HALF_LEN), 0, base); in ParseOpl()
953 ((!imsi.empty()) && (imsiSize >= MCCMNC_LEN))) { in CheckMncLength()
954 std::string mccMncCode = imsi.substr(0, MCCMNC_LEN); in CheckMncLength()
Dsim_utils.cpp146 if (static_cast<int>(data.size()) >= (offset + MCCMNC_LEN) && data.at(offset) != 'F') { in BcdPlmnConvertToString()