Searched refs:mccMncCode (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/base/telephony/core_service/services/sim/include/ |
H A D | mcc_pool.h | 290 static bool LengthIsThreeMnc(const std::string &mccMncCode); 291 static bool LengthIsTwoMnc(const std::string &mccMncCode);
|
/ohos5.0/base/telephony/core_service/services/sim/src/ |
H A D | sim_file.cpp | 1213 std::string mccMncCode = imsi.substr(0, MCCMNC_LEN); in CheckMncLengthForAdDone() local 1214 TELEPHONY_LOGI("SimFile mccMncCode= %{public}s", mccMncCode.c_str()); in CheckMncLengthForAdDone() 1215 if (MccPool::LengthIsThreeMnc(mccMncCode)) { in CheckMncLengthForAdDone() 1224 std::string mccMncCode = imsi.substr(0, MCCMNC_SHORT_LEN); in CheckMncLengthForAdDone() local 1225 if (MccPool::LengthIsTwoMnc(mccMncCode)) { in CheckMncLengthForAdDone() 1257 std::string mccMncCode = imsi.substr(0, MCCMNC_LEN); in CheckMncLengthForImsiDone() local 1258 TELEPHONY_LOGI("SimFile imsidone mccMncCode= %{public}s", mccMncCode.c_str()); in CheckMncLengthForImsiDone() 1259 if (MccPool::LengthIsThreeMnc(mccMncCode)) { in CheckMncLengthForImsiDone() 1268 std::string mccMncCode = imsi.substr(0, MCCMNC_SHORT_LEN); in CheckMncLengthForImsiDone() local 1269 if (MccPool::LengthIsTwoMnc(mccMncCode)) { in CheckMncLengthForImsiDone()
|
H A D | mcc_pool.cpp | 344 bool MccPool::LengthIsTwoMnc(const std::string &mccMncCode) in LengthIsTwoMnc() argument 347 …ector<std::string>::iterator obj = std::find(indiaMccMnc_.begin(), indiaMccMnc_.end(), mccMncCode); in LengthIsTwoMnc() 372 bool MccPool::LengthIsThreeMnc(const std::string &mccMncCode) in LengthIsThreeMnc() argument 375 …r<std::string>::iterator obj = std::find(specialMccMnc_.begin(), specialMccMnc_.end(), mccMncCode); in LengthIsThreeMnc()
|