/base/telephony/core_service/services/network_search/src/ |
H A D | network_register.cpp | 69 RadioTech tech, in UpdateNetworkSearchState() 76 networkSearchState_->SetNetworkType(tech, type); in UpdateNetworkSearchState() 98 RadioTech tech = ConvertTechFromRil(static_cast<TelRilRadioTech>(csRegStateResult->radioTechnology)); in ProcessCsRegister() local 103 UpdateNetworkSearchState(regStatus, tech, roam, DomainType::DOMAIN_TYPE_CS); in ProcessCsRegister() 108 static_cast<int32_t>(tech), static_cast<int32_t>(regStatus)); in ProcessCsRegister() 144 RadioTech tech = ConvertTechFromRil(static_cast<TelRilRadioTech>(psRegStatusResult->radioTechnology)); in ProcessPsRegister() local 149 UpdateNetworkSearchState(regStatus, tech, roam, DomainType::DOMAIN_TYPE_PS); in ProcessPsRegister() 159 static_cast<int32_t>(tech), static_cast<int32_t>(regStatus)); in ProcessPsRegister() 361 RadioTech tech = networkSearchState_->GetNetworkStatus()->GetPsRadioTech(); in UpdateCfgTech() local 362 TELEPHONY_LOGD("tech in UpdateCfgTech() 68 UpdateNetworkSearchState(RegServiceState regStatus, RadioTech tech, RoamingType roam, DomainType type) UpdateNetworkSearchState() argument 467 GetTechnologyByNrConfig(RadioTech tech) GetTechnologyByNrConfig() argument [all...] |
H A D | network_search_state.cpp | 83 void NetworkSearchState::SetNetworkType(RadioTech tech, DomainType domainType) in SetNetworkType() argument 87 networkState_->SetNetworkType(tech, domainType); in SetNetworkType() 259 int32_t NetworkSearchState::GetLastCfgTech(RadioTech &tech) in GetLastCfgTech() argument 266 tech = networkState_->GetLastCfgTech(); in GetLastCfgTech() 270 int32_t NetworkSearchState::GetLastPsRadioTech(RadioTech &tech) in GetLastPsRadioTech() argument 277 tech = networkState_->GetLastPsRadioTech(); in GetLastPsRadioTech() 281 void NetworkSearchState::SetCfgTech(RadioTech tech) in SetCfgTech() argument 285 networkState_->SetCfgTech(tech); in SetCfgTech()
|
/base/telephony/core_service/services/network_search/include/ |
H A D | network_search_state.h | 38 void SetNetworkType(RadioTech tech, DomainType domainType); 42 int32_t GetLastCfgTech(RadioTech &tech); 43 int32_t GetLastPsRadioTech(RadioTech &tech); 45 void SetCfgTech(RadioTech tech);
|
H A D | network_register.h | 72 RadioTech GetTechnologyByNrConfig(RadioTech tech); 74 void UpdateNetworkSearchState(RegServiceState regStatus, RadioTech tech, RoamingType roam, DomainType type);
|
/base/telephony/core_service/test/fuzztest/imsregcallback_fuzzer/ |
H A D | imsregcallback_fuzzer.cpp | 42 int32_t tech = static_cast<int32_t>(*data % TECH_NUM); in OnRemoteRequest() local 45 dataMessageParcel.WriteInt32(tech); in OnRemoteRequest()
|
/base/telephony/sms_mms/interfaces/innerkits/ims/ |
H A D | ims_sms_types.h | 62 SmsRadioTechnologyFamily tech = SmsRadioTechnologyFamily::SMS_RADIO_TECH_3GPP;
member
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | network_state.h | 36 void SetNetworkType(RadioTech tech, DomainType domainType); 40 void SetCfgTech(RadioTech tech);
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | network_state.cpp | 336 void NetworkState::SetNetworkType(RadioTech tech, DomainType domainType) in SetNetworkType() argument 339 csRadioTech_ = tech; in SetNetworkType() 342 psRadioTech_ = tech; in SetNetworkType() 397 void NetworkState::SetCfgTech(RadioTech tech) in SetCfgTech() argument 400 cfgTech_ = tech; in SetCfgTech()
|
/base/telephony/core_service/services/core/src/ |
H A D | core_service_hisysevent.cpp | 65 void CoreServiceHiSysEvent::WriteNetworkStateBehaviorEvent(int32_t slotId, int32_t domain, int32_t tech, int32_t state) in WriteNetworkStateBehaviorEvent() argument 68 tech, NETWORK_STATE_KEY, state); in WriteNetworkStateBehaviorEvent()
|
/base/telephony/core_service/services/core/include/ |
H A D | core_service_hisysevent.h | 38 static void WriteNetworkStateBehaviorEvent(int32_t slotId, int32_t domain, int32_t tech, int32_t state);
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | network_search_branch_test.cpp | 354 RadioTech tech = RadioTech::RADIO_TECHNOLOGY_UNKNOWN; in HWTEST_F() local 355 EXPECT_EQ(networkSearchState->GetLastCfgTech(tech), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 356 EXPECT_EQ(tech, RadioTech::RADIO_TECHNOLOGY_LTE_CA); in HWTEST_F() 359 EXPECT_EQ(networkSearchState->GetLastPsRadioTech(tech), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 360 EXPECT_EQ(tech, RadioTech::RADIO_TECHNOLOGY_UNKNOWN); in HWTEST_F()
|
H A D | zero_branch_test.cpp | 472 auto tech = std::make_shared<VoiceRadioTechnology>(); in HWTEST_F() local 479 tech->actType = TelRilRadioTech::RADIO_TECHNOLOGY_EHRPD; in HWTEST_F() 480 EXPECT_EQ(simFileManager.GetIccTypeByTech(tech), SimFileManager::IccType::ICC_TYPE_CDMA); in HWTEST_F() 481 tech->actType = TelRilRadioTech::RADIO_TECHNOLOGY_1XRTT; in HWTEST_F() 482 EXPECT_EQ(simFileManager.GetIccTypeByTech(tech), SimFileManager::IccType::ICC_TYPE_CDMA); in HWTEST_F() 483 tech->actType = TelRilRadioTech::RADIO_TECHNOLOGY_WCDMA; in HWTEST_F() 484 EXPECT_EQ(simFileManager.GetIccTypeByTech(tech), SimFileManager::IccType::ICC_TYPE_USIM); in HWTEST_F() 485 tech->actType = TelRilRadioTech::RADIO_TECHNOLOGY_LTE_CA; in HWTEST_F() 486 EXPECT_EQ(simFileManager.GetIccTypeByTech(tech), SimFileManager::IccType::ICC_TYPE_USIM); in HWTEST_F() 487 tech in HWTEST_F() [all...] |
/base/telephony/cellular_call/vendor/ims/services/ims_sms/src/ |
H A D | ims_sms_stub.cpp | 67 sendMessageInfo.tech = static_cast<const SmsRadioTechnologyFamily>(data.ReadInt32());
in OnImsSendMessage()
|
/base/telephony/sms_mms/services/sms/ims_service_interaction/src/ |
H A D | ims_sms_proxy.cpp | 43 if (!in.WriteInt32(imsMessageInfo.tech)) {
in ImsSendMessage()
|
/base/telephony/core_service/services/sim/src/ |
H A D | sim_file_manager.cpp | 822 std::shared_ptr<VoiceRadioTechnology> tech = event->GetSharedObject<VoiceRadioTechnology>(); in ProcessEvent() local 823 SimFileManager::IccType iccType = GetIccTypeByTech(tech); in ProcessEvent() 934 SimFileManager::IccType SimFileManager::GetIccTypeByTech(const std::shared_ptr<VoiceRadioTechnology> &tech) in GetIccTypeByTech() argument 936 if (tech == nullptr) { in GetIccTypeByTech() 937 TELEPHONY_LOGE("GetCardTypeByTech param tech is nullptr then ICC_TYPE_UNKNOW"); in GetIccTypeByTech() 940 switch (tech->actType) { in GetIccTypeByTech()
|
/base/telephony/core_service/services/sim/include/ |
H A D | sim_file_manager.h | 142 IccType GetIccTypeByTech(const std::shared_ptr<VoiceRadioTechnology> &tech);
|
/base/telephony/cellular_data/test/ |
H A D | cellular_data_handler_branch_test.cpp | 128 int32_t tech = 1; in HWTEST_F() local 130 EXPECT_CALL(*mockNetworkSearchManager, GetPsRadioTech(_, _)).WillOnce(DoAll(SetArgReferee<1>(tech), Return(0))); in HWTEST_F()
|
/base/telephony/ril_adapter/services/hril/include/ |
H A D | hril_sim.h | 151 int32_t ConvertRadioProtocolTech(int32_t tech);
|
/base/telephony/sms_mms/services/sms/gsm/ |
H A D | gsm_sms_sender.cpp | 273 imsMessageInfo.tech = SMS_RADIO_TECH_3GPP; in SendImsSms()
|
/base/telephony/ril_adapter/services/hril/src/ |
H A D | hril_sim.cpp | 852 int32_t HRilSim::ConvertRadioProtocolTech(int32_t tech) in ConvertRadioProtocolTech() argument 857 if ((static_cast<uint32_t>(tech) & protocolTech) != 0) { in ConvertRadioProtocolTech()
|
/base/telephony/sms_mms/services/sms/cdma/ |
H A D | cdma_sms_sender.cpp | 528 imsMessageInfo.tech = SMS_RADIO_TECH_3GPP; in SendImsSms()
|
/base/telephony/core_service/frameworks/js/network_search/src/ |
H A D | napi_radio.cpp | 675 NetworkRat tech = static_cast<NetworkRat>(radioTech); in GetRadioTechName() local 676 switch (tech) { in GetRadioTechName()
|