Home
last modified time | relevance | path

Searched refs:dataProfile (Results 1 – 13 of 13) sorted by relevance

/base/telephony/core_service/services/tel_ril/src/
Dtel_ril_data.cpp31 HDI::Ril::V1_1::DataProfileDataInfo TelRilData::ChangeDPToHalDataProfile(DataProfile dataProfile) in ChangeDPToHalDataProfile() argument
34 dataProfileInfo.profileId = dataProfile.profileId; in ChangeDPToHalDataProfile()
35 dataProfileInfo.password = dataProfile.password; in ChangeDPToHalDataProfile()
36 dataProfileInfo.authenticationType = dataProfile.verType; in ChangeDPToHalDataProfile()
37 dataProfileInfo.userName = dataProfile.userName; in ChangeDPToHalDataProfile()
38 dataProfileInfo.apn = dataProfile.apn; in ChangeDPToHalDataProfile()
39 dataProfileInfo.protocol = dataProfile.protocol; in ChangeDPToHalDataProfile()
40 dataProfileInfo.roamingProtocol = dataProfile.roamingProtocol; in ChangeDPToHalDataProfile()
58 int32_t TelRilData::ActivatePdpContext(int32_t radioTechnology, DataProfile dataProfile, bool isRoa… in ActivatePdpContext() argument
63 dataCallInfo.dataProfileInfo = ChangeDPToHalDataProfile(dataProfile); in ActivatePdpContext()
[all …]
Dtel_ril_manager.cpp501 int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) in SetInitApnInfo() argument
503 …kSchedule(response, "TelRilData", GetTelRilData(slotId), &TelRilData::SetInitApnInfo, dataProfile); in SetInitApnInfo()
510 …activateData.radioTechnology, activateData.dataProfile, activateData.isRoaming, activateData.allow… in ActivatePdpContext()
/base/telephony/core_service/services/tel_ril/include/
Dtel_ril_data.h31 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 …
Dtel_ril_manager.h205 …int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) o…
/base/telephony/cellular_data/services/src/state_machine/
Dcellular_data_state_machine.cpp94 activeDataParam.dataProfile.profileId = apn->attr_.profileId_; in DoConnect()
95 activeDataParam.dataProfile.apn = apn->attr_.apn_; in DoConnect()
96 activeDataParam.dataProfile.protocol = apn->attr_.protocol_; in DoConnect()
97 activeDataParam.dataProfile.verType = apn->attr_.authType_; in DoConnect()
98 activeDataParam.dataProfile.userName = apn->attr_.user_; in DoConnect()
99 activeDataParam.dataProfile.password = apn->attr_.password_; in DoConnect()
100 activeDataParam.dataProfile.roamingProtocol = apn->attr_.roamingProtocol_; in DoConnect()
/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/
Dsendsmsmoremode_fuzzer.cpp178 DataProfile dataProfile; in DeactivatePdpContext() local
179 dataProfile.profileId = profileId; in DeactivatePdpContext()
180 dataProfile.apn = apn; in DeactivatePdpContext()
181 dataProfile.protocol = protocol; in DeactivatePdpContext()
182 dataProfile.verType = verType; in DeactivatePdpContext()
183 dataProfile.userName = userName; in DeactivatePdpContext()
184 dataProfile.password = password; in DeactivatePdpContext()
185 dataProfile.roamingProtocol = roamingProtocol; in DeactivatePdpContext()
209 telRilData->SetInitApnInfo(dataProfile, response); in DeactivatePdpContext()
/base/telephony/core_service/test/unittest/tel_ril_gtest/
Dtel_ril_test_util.cpp1418 DataProfile dataProfile; in DataSetInitApnInfoTest() local
1419 dataProfile.profileId = 0; in DataSetInitApnInfoTest()
1420 dataProfile.apn = "cmnet"; in DataSetInitApnInfoTest()
1421 dataProfile.protocol = "IPV4V6"; in DataSetInitApnInfoTest()
1422 dataProfile.verType = AUTHTYPE_1; in DataSetInitApnInfoTest()
1423 dataProfile.userName = ""; in DataSetInitApnInfoTest()
1424 dataProfile.password = ""; in DataSetInitApnInfoTest()
1425 dataProfile.roamingProtocol = "IPV4V6"; in DataSetInitApnInfoTest()
1426 telRilManager_->SetInitApnInfo(slotId, dataProfile, event); in DataSetInitApnInfoTest()
1449 activateData.dataProfile.profileId = 0; in DataSetupDataCallTest()
[all …]
/base/telephony/cellular_data/services/src/
Dcellular_data_handler.cpp1155 DataProfile dataProfile; in SetRilAttachApn() local
1156 dataProfile.profileId = attachApn->attr_.profileId_; in SetRilAttachApn()
1157 dataProfile.apn = attachApn->attr_.apn_; in SetRilAttachApn()
1158 dataProfile.protocol = attachApn->attr_.protocol_; in SetRilAttachApn()
1159 dataProfile.verType = attachApn->attr_.authType_; in SetRilAttachApn()
1160 dataProfile.userName = attachApn->attr_.user_; in SetRilAttachApn()
1161 dataProfile.password = attachApn->attr_.password_; in SetRilAttachApn()
1162 dataProfile.roamingProtocol = attachApn->attr_.roamingProtocol_; in SetRilAttachApn()
1164 slotId_, CellularDataEventCode::MSG_SET_RIL_ATTACH_APN, dataProfile, shared_from_this()); in SetRilAttachApn()
/base/telephony/core_service/interfaces/innerkits/include/
Dtelephony_types.h183 struct DataProfile dataProfile; member
Di_tel_ril_manager.h176 …int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) =…
Dcore_manager_inner.h97 int32_t SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile,
/base/telephony/core_service/services/tel_ril/test/
Dtel_ril_test.cpp1153 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestSetInitApnInfoTest() local
1154 telRilManager_->SetInitApnInfo(slotId, dataProfile, event); in OnRequestSetInitApnInfoTest()
1167 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestDataSetupDataCallTest() local
1168 ActivateDataParam activateData = {0, REASON, dataProfile, false, true}; in OnRequestDataSetupDataCallTest()
/base/telephony/core_service/frameworks/native/src/
Dcore_manager_inner.cpp1136 …t CoreManagerInner::SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile, in SetInitApnInfo() argument
1149 return telRilManager_->SetInitApnInfo(slotId, dataProfile, response); in SetInitApnInfo()