/ohos5.0/base/telephony/core_service/services/tel_ril/src/ |
H A D | tel_ril_data.cpp | 29 HDI::Ril::V1_1::DataProfileDataInfo TelRilData::ChangeDPToHalDataProfile(DataProfile dataProfile) in ChangeDPToHalDataProfile() argument 32 dataProfileInfo.profileId = dataProfile.profileId; in ChangeDPToHalDataProfile() 33 dataProfileInfo.password = dataProfile.password; in ChangeDPToHalDataProfile() 34 dataProfileInfo.authenticationType = dataProfile.verType; in ChangeDPToHalDataProfile() 35 dataProfileInfo.userName = dataProfile.userName; in ChangeDPToHalDataProfile() 36 dataProfileInfo.apn = dataProfile.apn; in ChangeDPToHalDataProfile() 37 dataProfileInfo.protocol = dataProfile.protocol; in ChangeDPToHalDataProfile() 38 dataProfileInfo.roamingProtocol = dataProfile.roamingProtocol; in ChangeDPToHalDataProfile() 55 int32_t TelRilData::ActivatePdpContext(int32_t radioTechnology, DataProfile dataProfile, bool isRoa… in ActivatePdpContext() argument 60 dataCallInfo.dataProfileInfo = ChangeDPToHalDataProfile(dataProfile); in ActivatePdpContext() [all …]
|
H A D | tel_ril_manager.cpp | 550 int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) in SetInitApnInfo() argument 552 …kSchedule(response, "TelRilData", GetTelRilData(slotId), &TelRilData::SetInitApnInfo, dataProfile); in SetInitApnInfo() 559 …activateData.radioTechnology, activateData.dataProfile, activateData.isRoaming, activateData.allow… in ActivatePdpContext()
|
/ohos5.0/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/ |
H A D | sendsmsmoremode_fuzzer.cpp | 170 DataProfile dataProfile; in DeactivatePdpContext() local 171 dataProfile.profileId = profileId; in DeactivatePdpContext() 172 dataProfile.apn = apn; in DeactivatePdpContext() 173 dataProfile.protocol = protocol; in DeactivatePdpContext() 174 dataProfile.verType = verType; in DeactivatePdpContext() 175 dataProfile.userName = userName; in DeactivatePdpContext() 176 dataProfile.password = password; in DeactivatePdpContext() 177 dataProfile.roamingProtocol = roamingProtocol; in DeactivatePdpContext() 195 telRilData->SetInitApnInfo(dataProfile, response); in DeactivatePdpContext()
|
/ohos5.0/base/telephony/core_service/services/tel_ril/include/ |
H A D | tel_ril_data.h | 31 HDI::Ril::V1_1::DataProfileDataInfo ChangeDPToHalDataProfile(DataProfile dataProfile); 34 …int32_t SetInitApnInfo(const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &resp… 36 …int32_t ActivatePdpContext(int32_t radioTechnology, DataProfile dataProfile, bool isRoaming, bool …
|
H A D | tel_ril_manager.h | 209 …int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) o…
|
/ohos5.0/base/telephony/cellular_data/services/src/state_machine/ |
H A D | cellular_data_state_machine.cpp | 118 activeDataParam.dataProfile.profileId = apn->attr_.profileId_; in DoConnect() 119 activeDataParam.dataProfile.apn = apn->attr_.apn_; in DoConnect() 120 activeDataParam.dataProfile.protocol = apn->attr_.protocol_; in DoConnect() 121 activeDataParam.dataProfile.verType = apn->attr_.authType_; in DoConnect() 122 activeDataParam.dataProfile.userName = apn->attr_.user_; in DoConnect() 123 activeDataParam.dataProfile.password = apn->attr_.password_; in DoConnect() 124 activeDataParam.dataProfile.roamingProtocol = apn->attr_.roamingProtocol_; in DoConnect()
|
/ohos5.0/base/telephony/cellular_data/services/src/ |
H A D | cellular_data_handler.cpp | 1606 DataProfile dataProfile; in SetInitApnWithNullDp() local 1607 dataProfile.profileId = 0; in SetInitApnWithNullDp() 1608 dataProfile.apn = ""; in SetInitApnWithNullDp() 1609 dataProfile.protocol = ""; in SetInitApnWithNullDp() 1610 dataProfile.verType = 0; in SetInitApnWithNullDp() 1611 dataProfile.userName = ""; in SetInitApnWithNullDp() 1612 dataProfile.password = ""; in SetInitApnWithNullDp() 1613 dataProfile.roamingProtocol = ""; in SetInitApnWithNullDp() 1630 DataProfile dataProfile; in SetRilAttachApn() local 1632 dataProfile.apn = attachApn->attr_.apn_; in SetRilAttachApn() [all …]
|
/ohos5.0/base/telephony/core_service/test/unittest/tel_ril_gtest/ |
H A D | tel_ril_test_util.cpp | 1424 DataProfile dataProfile; in DataSetInitApnInfoTest() local 1425 dataProfile.profileId = 0; in DataSetInitApnInfoTest() 1426 dataProfile.apn = "cmnet"; in DataSetInitApnInfoTest() 1427 dataProfile.protocol = "IPV4V6"; in DataSetInitApnInfoTest() 1428 dataProfile.verType = AUTHTYPE_1; in DataSetInitApnInfoTest() 1429 dataProfile.userName = ""; in DataSetInitApnInfoTest() 1430 dataProfile.password = ""; in DataSetInitApnInfoTest() 1431 dataProfile.roamingProtocol = "IPV4V6"; in DataSetInitApnInfoTest() 1455 activateData.dataProfile.profileId = 0; in DataSetupDataCallTest() 1456 activateData.dataProfile.apn = "cmnet"; in DataSetupDataCallTest() [all …]
|
/ohos5.0/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | telephony_types.h | 210 struct DataProfile dataProfile; member
|
H A D | i_tel_ril_manager.h | 180 …int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) =…
|
H A D | core_manager_inner.h | 98 int32_t SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile,
|
/ohos5.0/base/telephony/core_service/services/tel_ril/test/ |
H A D | tel_ril_test.cpp | 1237 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestSetInitApnInfoTest() local 1238 telRilManager_->SetInitApnInfo(slotId, dataProfile, event); in OnRequestSetInitApnInfoTest() 1251 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestDataSetupDataCallTest() local 1252 ActivateDataParam activateData = {0, REASON, dataProfile, false, true}; in OnRequestDataSetupDataCallTest()
|
/ohos5.0/base/telephony/core_service/frameworks/native/src/ |
H A D | core_manager_inner.cpp | 1182 …t CoreManagerInner::SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile, in SetInitApnInfo() argument 1195 return telRilManager_->SetInitApnInfo(slotId, dataProfile, response); in SetInitApnInfo()
|