/base/telephony/ril_adapter/interfaces/innerkits/include/ |
H A D | hril_vendor_sim_defs.h | 375 void (*SimStkSendTerminalResponse)(const ReqDataInfo *requestInfo, const char *strCmd); 376 void (*SimStkSendEnvelope)(const ReqDataInfo *requestInfo, const char *strCmd); 377 void (*SimStkSendEnvelopeResponseContainStatus)(const ReqDataInfo *requestInfo, const char *strCmd);
|
/base/telephony/core_service/services/sim/include/ |
H A D | stk_controller.h | 58 int32_t SendTerminalResponseCmd(const std::string &strCmd); 59 int32_t SendEnvelopeCmd(const std::string &strCmd);
|
/base/telephony/ril_adapter/services/vendor/include/ |
H A D | at_sim.h | 100 void ReqSimStkSendTerminalResponse(const ReqDataInfo *requestInfo, const char *strCmd); 101 void ReqSimStkSendEnvelope(const ReqDataInfo *requestInfo, const char *strCmd);
|
/base/telephony/core_service/services/sim/src/ |
H A D | stk_controller.cpp | 503 int32_t StkController::SendTerminalResponseCmd(const std::string &strCmd) in SendTerminalResponseCmd() argument 520 telRilManager->SendTerminalResponseCmd(slotId_, strCmd, event); in SendTerminalResponseCmd() 535 int32_t StkController::SendEnvelopeCmd(const std::string &strCmd) in SendEnvelopeCmd() argument 552 telRilManager->SendEnvelopeCmd(slotId_, strCmd, event); in SendEnvelopeCmd()
|
/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/ |
H A D | sendsmsmoremode_fuzzer.cpp | 239 std::string strCmd(reinterpret_cast<const char *>(data), size); in GetSimStatus() 260 telRilSim->SimStkSendTerminalResponse(strCmd, result); in GetSimStatus() 261 telRilSim->SimStkSendEnvelope(strCmd, result); in GetSimStatus()
|
/base/telephony/core_service/services/tel_ril/include/ |
H A D | tel_ril_sim.h | 53 int32_t SimStkSendTerminalResponse(const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response); 54 int32_t SimStkSendEnvelope(const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response);
|
H A D | tel_ril_manager.h | 241 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) override; 243 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) override;
|
/base/telephony/core_service/services/tel_ril/src/ |
H A D | tel_ril_sim.cpp | 394 const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) in SimStkSendTerminalResponse() 396 return Request(TELEPHONY_LOG_FUNC_NAME, response, &HDI::Ril::V1_1::IRil::SimStkSendTerminalResponse, strCmd); in SimStkSendTerminalResponse() 399 int32_t TelRilSim::SimStkSendEnvelope(const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) in SimStkSendEnvelope() argument 401 return Request(TELEPHONY_LOG_FUNC_NAME, response, &HDI::Ril::V1_1::IRil::SimStkSendEnvelope, strCmd); in SimStkSendEnvelope() 393 SimStkSendTerminalResponse( const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) SimStkSendTerminalResponse() argument
|
H A D | tel_ril_manager.cpp | 885 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) in SendTerminalResponseCmd() 887 return TaskSchedule(response, "TelRilSim", GetTelRilSim(slotId), &TelRilSim::SimStkSendTerminalResponse, strCmd); in SendTerminalResponseCmd() 891 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) in SendEnvelopeCmd() 893 return TaskSchedule(response, "TelRilSim", GetTelRilSim(slotId), &TelRilSim::SimStkSendEnvelope, strCmd); in SendEnvelopeCmd() 884 SendTerminalResponseCmd( int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) SendTerminalResponseCmd() argument 890 SendEnvelopeCmd( int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) SendEnvelopeCmd() argument
|
/base/telephony/ril_adapter/services/hril/include/ |
H A D | hril_sim.h | 45 int32_t SimStkSendTerminalResponse(int32_t serialId, const std::string &strCmd); 46 int32_t SimStkSendEnvelope(int32_t serialId, const std::string &strCmd);
|
H A D | hril_manager.h | 156 int32_t SimStkSendTerminalResponse(int32_t slotId, int32_t serialId, const std::string &strCmd); 157 int32_t SimStkSendEnvelope(int32_t slotId, int32_t serialId, const std::string &strCmd);
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | i_tel_ril_manager.h | 218 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) = 0; 220 int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) = 0;
|
/base/telephony/ril_adapter/services/hril/src/ |
H A D | hril_manager.cpp | 756 int32_t HRilManager::SimStkSendTerminalResponse(int32_t slotId, int32_t serialId, const std::string &strCmd) in SimStkSendTerminalResponse() argument 758 return TaskSchedule(MODULE_HRIL_SIM, hrilSim_[slotId], &HRilSim::SimStkSendTerminalResponse, serialId, strCmd); in SimStkSendTerminalResponse() 761 int32_t HRilManager::SimStkSendEnvelope(int32_t slotId, int32_t serialId, const std::string &strCmd) in SimStkSendEnvelope() argument 763 return TaskSchedule(MODULE_HRIL_SIM, hrilSim_[slotId], &HRilSim::SimStkSendEnvelope, serialId, strCmd); in SimStkSendEnvelope()
|
H A D | hril_sim.cpp | 255 int32_t HRilSim::SimStkSendTerminalResponse(int32_t serialId, const std::string &strCmd) in SimStkSendTerminalResponse() argument 258 CopyToCharPoint(&strCmdPoint, strCmd); in SimStkSendTerminalResponse() 265 int32_t HRilSim::SimStkSendEnvelope(int32_t serialId, const std::string &strCmd) in SimStkSendEnvelope() argument 268 CopyToCharPoint(&strCmdPoint, strCmd); in SimStkSendEnvelope()
|
/base/telephony/ril_adapter/services/vendor/src/ |
H A D | at_sim.c | 942 void ReqSimStkSendTerminalResponse(const ReqDataInfo *requestInfo, const char *strCmd) in ReqSimStkSendTerminalResponse() argument 949 int32_t result = GenerateCommand(cmd, MAX_CMD_LENGTH, "AT+SPUSATTERMINAL=\"%s\"", strCmd); in ReqSimStkSendTerminalResponse() 973 void ReqSimStkSendEnvelope(const ReqDataInfo *requestInfo, const char *strCmd) in ReqSimStkSendEnvelope() argument 980 int32_t result = GenerateCommand(cmd, MAX_CMD_LENGTH, "AT+SPUSATENVECMD=\"%s\"", strCmd); in ReqSimStkSendEnvelope()
|
/base/telephony/core_service/services/tel_ril/test/ |
H A D | tel_ril_test.cpp | 710 std::string strCmd; in OnRequestSendTerminalResponseCmdTest() local 712 std::cin >> strCmd; in OnRequestSendTerminalResponseCmdTest() local 714 telRilManager_->SendTerminalResponseCmd(slotId, strCmd, event); in OnRequestSendTerminalResponseCmdTest() 726 std::string strCmd; in OnRequestSendEnvelopeCmdTest() local 728 std::cin >> strCmd; in OnRequestSendEnvelopeCmdTest() local 730 telRilManager_->SendEnvelopeCmd(slotId, strCmd, event); in OnRequestSendEnvelopeCmdTest()
|
/base/telephony/cellular_data/test/ |
H A D | cellular_data_test.cpp | 235 string strCmd = "ping -c3 www.openharmony.cn"; in GetCmdResult() local 239 if ((pf = popen(strCmd.c_str(), "r")) == nullptr) { in GetCmdResult()
|
/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | zero_branch_test.cpp | 2713 std::string strCmd = ""; in HWTEST_F() local 2739 EXPECT_GT(stkController->SendTerminalResponseCmd(strCmd), TELEPHONY_ERR_SUCCESS); in HWTEST_F() 2740 EXPECT_GT(stkController->SendEnvelopeCmd(strCmd), TELEPHONY_ERR_SUCCESS); in HWTEST_F()
|