Home
last modified time | relevance | path

Searched refs:gsmIndex (Results 1 - 22 of 22) sorted by relevance

/base/telephony/core_service/interfaces/innerkits/include/
H A Dtel_ril_modem_parcel.h32 int32_t gsmIndex = 0; member
H A Di_tel_ril_manager.h53 virtual int32_t Hangup(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &result) = 0;
146 int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) = 0;
H A Dtelephony_types.h426 int32_t gsmIndex = 0; member
H A Dcore_manager_inner.h65 int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler);
166 int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler);
/base/telephony/core_service/services/tel_ril/src/
H A Dtel_ril_sms.cpp66 int32_t TelRilSms::DelSimMessage(int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) in DelSimMessage() argument
68 return Request(TELEPHONY_LOG_FUNC_NAME, response, &HDI::Ril::V1_1::IRil::DelSimMessage, gsmIndex); in DelSimMessage()
71 int32_t TelRilSms::UpdateSimMessage(int32_t gsmIndex, int32_t state, std::string smscPdu, std::string pdu, in UpdateSimMessage() argument
75 smsMessageIOInfo.index = gsmIndex; in UpdateSimMessage()
H A Dtel_ril_manager.cpp378 int32_t TelRilManager::Hangup(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) in Hangup() argument
380 return TaskSchedule(response, "TelRilCall", GetTelRilCall(slotId), &TelRilCall::Hangup, gsmIndex); in Hangup()
740 int32_t TelRilManager::DelSimMessage(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) in DelSimMessage() argument
742 return TaskSchedule(response, "TelRilSms", GetTelRilSms(slotId), &TelRilSms::DelSimMessage, gsmIndex); in DelSimMessage()
748 return TaskSchedule(response, "TelRilSms", GetTelRilSms(slotId), &TelRilSms::UpdateSimMessage, simMessage.gsmIndex, in UpdateSimMessage()
H A Dtel_ril_data.cpp60 uniInfo.gsmIndex = cid; in DeactivatePdpContext()
H A Dtel_ril_call.cpp350 int32_t TelRilCall::Hangup(int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &result) in Hangup() argument
352 return Request(TELEPHONY_LOG_FUNC_NAME, result, &HDI::Ril::V1_1::IRil::Hangup, gsmIndex); in Hangup()
/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/
H A Dsendsmsmoremode_fuzzer.cpp47 int32_t gsmIndex = static_cast<int32_t>(*data + offset); in SendSmsMoreMode() local
64 telRilSms->DelSimMessage(gsmIndex, response); in SendSmsMoreMode()
65 telRilSms->UpdateSimMessage(gsmIndex, state, smscPdu, pdu, response); in SendSmsMoreMode()
/base/telephony/core_service/services/tel_ril/include/
H A Dtel_ril_sms.h37 int32_t DelSimMessage(int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response);
38 int32_t UpdateSimMessage(int32_t gsmIndex, int32_t state, std::string smscPdu, std::string pdu,
H A Dtel_ril_manager.h60 int32_t Hangup(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &result) override;
176 int32_t DelSimMessage(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) override;
H A Dtel_ril_call.h33 int32_t Hangup(int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &result);
/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/
H A Dril_data_test.cpp115 uniInfo.gsmIndex = CID; in HWTEST_F()
136 uniInfo.gsmIndex = CID; in HWTEST_F()
/base/telephony/core_service/test/unittest/tel_ril_gtest/
H A Dtel_ril_test_util.cpp1085 simMessage.gsmIndex = 0; in StorageRilCmSmsTest()
1107 int32_t gsmIndex = 0; in DeleteRilCmSmsTest() local
1111 telRilManager_->DelSimMessage(slotId, gsmIndex, event); in DeleteRilCmSmsTest()
1130 simMessage.gsmIndex = 0; in UpdateRilCmSmsTest()
1382 int32_t gsmIndex = 0; in DelRilCmCdmaSmsTest() local
1386 telRilManager_->DelCdmaSimMessage(slotId, gsmIndex, event); in DelRilCmCdmaSmsTest()
/base/telephony/core_service/services/tel_ril/test/
H A Dtel_ril_test.cpp964 int32_t gsmIndex; in OnRequestDeleteRilCmSmsTest() local
966 std::cout << "Please input gsmIndex: " << endl; in OnRequestDeleteRilCmSmsTest()
967 std::cin >> gsmIndex; in OnRequestDeleteRilCmSmsTest() local
971 telRilManager_->DelSimMessage(slotId, gsmIndex, event); in OnRequestDeleteRilCmSmsTest()
979 int32_t gsmIndex; in OnRequestUpdateRilCmSmsTest() local
982 std::cout << "Please input gsmIndex: " << endl; in OnRequestUpdateRilCmSmsTest()
983 std::cin >> gsmIndex; in OnRequestUpdateRilCmSmsTest() local
989 simMsg.gsmIndex = gsmIndex; in OnRequestUpdateRilCmSmsTest()
1121 std::cout << "Please input gsmIndex in OnRequestDelRilCmCdmaSmsTest()
[all...]
/base/telephony/ril_adapter/services/hril/include/
H A Dhril_call.h35 int32_t Hangup(int32_t serialId, int32_t gsmIndex);
H A Dhril_manager.h78 int32_t Hangup(int32_t slotId, int32_t serialId, int32_t gsmIndex);
/base/telephony/core_service/frameworks/native/src/
H A Dcore_manager_inner.cpp518 int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler) in DelSimMessage()
530 return telRilManager_->DelSimMessage(slotId, gsmIndex, response); in DelSimMessage()
838 int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler) in Hangup()
850 return telRilManager_->Hangup(slotId, gsmIndex, response); in Hangup()
517 DelSimMessage( int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler) DelSimMessage() argument
837 Hangup( int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler> &handler) Hangup() argument
/base/telephony/ril_adapter/services/hril/src/
H A Dhril_data.cpp138 dataInfo.cid = uniInfo.gsmIndex; in DeactivatePdpContext()
H A Dhril_manager.cpp420 int32_t HRilManager::Hangup(int32_t slotId, int32_t serialId, int32_t gsmIndex) in Hangup() argument
422 return TaskSchedule(MODULE_HRIL_CALL, hrilCall_[slotId], &HRilCall::Hangup, serialId, gsmIndex); in Hangup()
H A Dhril_call.cpp211 int32_t HRilCall::Hangup(int32_t serialId, int32_t gsmIndex) in Hangup() argument
213 uint32_t data = gsmIndex; in Hangup()
/base/telephony/ril_adapter/test/unittest/
H A Dril_interface_test.cpp1000 cin >> uniInfo.gsmIndex; in DeactivatePdpContextTest()
1014 cin >> uniInfo.gsmIndex; in GetPdpContextListTest()

Completed in 35 milliseconds