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.cpp44 HDI::Ril::V1_0::DataProfileDataInfo TelRilData::ChangeDPToHalDataProfile(DataProfile dataProfile) in ChangeDPToHalDataProfile() argument
47 dataProfileInfo.profileId = dataProfile.profileId; in ChangeDPToHalDataProfile()
48 dataProfileInfo.password = dataProfile.password; in ChangeDPToHalDataProfile()
49 dataProfileInfo.authenticationType = dataProfile.verType; in ChangeDPToHalDataProfile()
50 dataProfileInfo.userName = dataProfile.userName; in ChangeDPToHalDataProfile()
51 dataProfileInfo.apn = dataProfile.apn; in ChangeDPToHalDataProfile()
52 dataProfileInfo.protocol = dataProfile.protocol; in ChangeDPToHalDataProfile()
53 dataProfileInfo.roamingProtocol = dataProfile.roamingProtocol; in ChangeDPToHalDataProfile()
71 int32_t TelRilData::ActivatePdpContext(int32_t radioTechnology, DataProfile dataProfile, bool isRoa… in ActivatePdpContext() argument
76 dataCallInfo.dataProfileInfo = ChangeDPToHalDataProfile(dataProfile); in ActivatePdpContext()
[all …]
Dtel_ril_manager.cpp443 int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) in SetInitApnInfo() argument
445 …kSchedule(response, "TelRilData", GetTelRilData(slotId), &TelRilData::SetInitApnInfo, dataProfile); in SetInitApnInfo()
452 …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_0::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.h193 …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.cpp177 DataProfile dataProfile; in DeactivatePdpContext() local
178 dataProfile.profileId = profileId; in DeactivatePdpContext()
179 dataProfile.apn = apn; in DeactivatePdpContext()
180 dataProfile.protocol = protocol; in DeactivatePdpContext()
181 dataProfile.verType = verType; in DeactivatePdpContext()
182 dataProfile.userName = userName; in DeactivatePdpContext()
183 dataProfile.password = password; in DeactivatePdpContext()
184 dataProfile.roamingProtocol = roamingProtocol; in DeactivatePdpContext()
201 telRilData->SetInitApnInfo(dataProfile, response); in DeactivatePdpContext()
/base/telephony/cellular_data/services/src/
Dcellular_data_handler.cpp1144 DataProfile dataProfile; in SetRilAttachApn() local
1145 dataProfile.profileId = attachApn->attr_.profileId_; in SetRilAttachApn()
1146 dataProfile.apn = attachApn->attr_.apn_; in SetRilAttachApn()
1147 dataProfile.protocol = attachApn->attr_.protocol_; in SetRilAttachApn()
1148 dataProfile.verType = attachApn->attr_.authType_; in SetRilAttachApn()
1149 dataProfile.userName = attachApn->attr_.user_; in SetRilAttachApn()
1150 dataProfile.password = attachApn->attr_.password_; in SetRilAttachApn()
1151 dataProfile.roamingProtocol = attachApn->attr_.roamingProtocol_; in SetRilAttachApn()
1153 slotId_, CellularDataEventCode::MSG_SET_RIL_ATTACH_APN, dataProfile, shared_from_this()); in SetRilAttachApn()
/base/telephony/core_service/interfaces/innerkits/include/
Dtelephony_types.h108 struct DataProfile dataProfile; member
Di_tel_ril_manager.h169 …int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) =…
Dcore_manager_inner.h98 int32_t SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile,
/base/telephony/core_service/test/unittest/tel_ril_gtest/
Dtel_ril_test.cpp1405 DataProfile dataProfile; in DataSetInitApnInfoTest() local
1406 dataProfile.profileId = 0; in DataSetInitApnInfoTest()
1407 dataProfile.apn = "cmnet"; in DataSetInitApnInfoTest()
1408 dataProfile.protocol = "IPV4V6"; in DataSetInitApnInfoTest()
1409 dataProfile.verType = AUTHTYPE_1; in DataSetInitApnInfoTest()
1410 dataProfile.userName = ""; in DataSetInitApnInfoTest()
1411 dataProfile.password = ""; in DataSetInitApnInfoTest()
1412 dataProfile.roamingProtocol = "IPV4V6"; in DataSetInitApnInfoTest()
1413 telRilManager_->SetInitApnInfo(slotId, dataProfile, event); in DataSetInitApnInfoTest()
1436 activateData.dataProfile.profileId = 0; in DataSetupDataCallTest()
[all …]
/base/telephony/core_service/services/tel_ril/test/
Dtel_ril_test.cpp1532 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestSetInitApnInfoTest() local
1533 telRilManager_->SetInitApnInfo(slotId, dataProfile, event); in OnRequestSetInitApnInfoTest()
1548 DataProfile dataProfile = {0, "cmnet", "IPV4V6", AUTHTYPE_1, "", "", "IPV4V6"}; in OnRequestDataSetupDataCallTest() local
1549 ActivateDataParam activateData = {0, REASON, dataProfile, false, true}; in OnRequestDataSetupDataCallTest()
/base/telephony/core_service/frameworks/native/src/
Dcore_manager_inner.cpp1162 …t CoreManagerInner::SetInitApnInfo(int32_t slotId, int32_t eventId, const DataProfile &dataProfile, in SetInitApnInfo() argument
1175 return telRilManager_->SetInitApnInfo(slotId, dataProfile, response); in SetInitApnInfo()