Searched refs:opl (Results 1 – 2 of 2) sorted by relevance
/base/telephony/core_service/services/network_search/src/ |
D | operator_name.cpp | 408 for (std::shared_ptr<OperatorPlmnInfo> opl : oplCust_) { in GetCustEons() 409 if (opl == nullptr) { in GetCustEons() 416 … numeric.c_str(), opl->plmnNumeric.c_str(), lac, opl->lacStart, opl->lacEnd, opl->pnnRecordId); in GetCustEons() 417 if (numeric.compare(opl->plmnNumeric) == 0 && in GetCustEons() 418 … ((opl->lacStart == 0 && opl->lacEnd == 0xfffe) || (opl->lacStart <= lac && opl->lacEnd >= lac))) { in GetCustEons() 419 pnnIndex = opl->pnnRecordId; in GetCustEons() 548 std::shared_ptr<OperatorPlmnInfo> opl = std::make_shared<OperatorPlmnInfo>(); in UpdateOplCust() local 550 opl->pnnRecordId = stoi(oplString.back(), 0, base); in UpdateOplCust() 555 opl->lacEnd = stoi(oplString.back(), 0, base); in UpdateOplCust() 560 opl->lacStart = stoi(oplString.back(), 0, base); in UpdateOplCust() [all …]
|
/base/telephony/core_service/services/sim/src/ |
D | icc_file.cpp | 209 for (std::shared_ptr<OperatorPlmnInfo> opl : oplFiles_) { in ObtainEons() 210 if (opl == nullptr) { in ObtainEons() 217 … plmn.c_str(), opl->plmnNumeric.c_str(), lac, opl->lacStart, opl->lacEnd, opl->pnnRecordId); in ObtainEons() 218 if (plmn.compare(opl->plmnNumeric) == 0 && in ObtainEons() 219 … ((opl->lacStart == 0 && opl->lacEnd == 0xfffe) || (opl->lacStart <= lac && opl->lacEnd >= lac))) { in ObtainEons() 220 pnnIndex = opl->pnnRecordId; in ObtainEons()
|