Home
last modified time | relevance | path

Searched refs:GetMnc (Results 1 – 11 of 11) sorted by relevance

/base/location/services/location_gnss/gnss/source/
Dagnss_event_callback.cpp119 refInfo.cellId.mnc = static_cast<unsigned short>(std::stoi(gsmCellInfo->GetMnc())); in JudgmentDataGsm()
131 refInfo.cellId.mnc = static_cast<unsigned short>(std::stoi(lteCellInfo->GetMnc())); in JudgmentDataLte()
144 refInfo.cellId.mnc = static_cast<unsigned short>(std::stoi(nrCellInfo->GetMnc())); in JudgmentDataNr()
158 refInfo.cellId.mnc = static_cast<unsigned short>(std::stoi(wcdmaCellInfo->GetMnc())); in JudgmentDataUmts()
/base/global/resource_management/interfaces/inner_api/include/
Dres_config.h64 virtual uint32_t GetMnc() const = 0;
/base/global/resource_management/frameworks/resmgr/src/
Dres_config_impl.cpp197 uint32_t ResConfigImpl::GetMnc() const in GetMnc() function in OHOS::Global::Resource::ResConfigImpl
279 if (this->GetMnc() != other.GetMnc()) { in Copy()
280 this->SetMnc(other.GetMnc()); in Copy()
/base/global/resource_management/frameworks/resmgr/include/
Dres_config_impl.h104 uint32_t GetMnc() const;
Dhap_parser.h179 static uint32_t GetMnc(uint32_t value);
/base/telephony/state_registry/frameworks/js/napi/src/
Devent_listener_handler.cpp180 SetPropertyToNapiObject(env, val, "mnc", info.GetMnc()); in DataOfNetworkConversion()
193 SetPropertyToNapiObject(env, val, "mcc", info.GetMnc()); in DataOfNetworkConversion()
194 SetPropertyToNapiObject(env, val, "mnc", info.GetMnc()); in DataOfNetworkConversion()
208 SetPropertyToNapiObject(env, val, "mnc", info.GetMnc()); in DataOfNetworkConversion()
/base/telephony/core_service/interfaces/innerkits/include/
Dcell_information.h82 virtual std::string GetMnc() const;
/base/global/resource_management/frameworks/resmgr/src/utils/
Dhap_parser.cpp622 configKey.mnc = GetMnc(kp->value_); in CreateResConfigFromKeyParams()
680 uint32_t HapParser::GetMnc(uint32_t value) in GetMnc() function in OHOS::Global::Resource::HapParser
/base/telephony/core_service/frameworks/js/network_search/src/
Dnapi_radio.cpp1948 NapiUtil::SetPropertyStringUtf8(env, data, "mnc", gsmCellInfo->GetMnc()); in JudgmentDataGsm()
1962 NapiUtil::SetPropertyStringUtf8(env, data, "mnc", lteCellInfo->GetMnc()); in JudgmentDataLte()
1976 NapiUtil::SetPropertyStringUtf8(env, data, "mnc", wcdmaCellInfo->GetMnc()); in JudgmentDataWcdma()
2001 NapiUtil::SetPropertyStringUtf8(env, data, "mnc", tdscdmaCellInfo->GetMnc()); in JudgmentDataTdscdma()
2014 NapiUtil::SetPropertyStringUtf8(env, data, "mnc", nrCellCellInfo->GetMnc()); in JudgmentDataNr()
/base/telephony/core_service/frameworks/native/src/
Dcell_information.cpp65 std::string CellInformation::GetMnc() const in GetMnc() function in OHOS::Telephony::CellInformation
/base/telephony/core_service/test/unittest/core_service_gtest/
Dnetwork_search_test.cpp123 …cellLte->Init(atoi(cellLte->GetMcc().c_str()), atoi(cellLte->GetMnc().c_str()), cellLte->GetCellId… in PrintCellInformation()