Home
last modified time | relevance | path

Searched refs:strCmd (Results 1 - 18 of 18) sorted by relevance

/base/telephony/ril_adapter/interfaces/innerkits/include/
H A Dhril_vendor_sim_defs.h375 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 Dstk_controller.h58 int32_t SendTerminalResponseCmd(const std::string &strCmd);
59 int32_t SendEnvelopeCmd(const std::string &strCmd);
/base/telephony/ril_adapter/services/vendor/include/
H A Dat_sim.h100 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 Dstk_controller.cpp503 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 Dsendsmsmoremode_fuzzer.cpp239 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 Dtel_ril_sim.h53 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 Dtel_ril_manager.h241 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 Dtel_ril_sim.cpp394 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 Dtel_ril_manager.cpp885 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 Dhril_sim.h45 int32_t SimStkSendTerminalResponse(int32_t serialId, const std::string &strCmd);
46 int32_t SimStkSendEnvelope(int32_t serialId, const std::string &strCmd);
H A Dhril_manager.h156 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 Di_tel_ril_manager.h218 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 Dhril_manager.cpp756 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 Dhril_sim.cpp255 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 Dat_sim.c942 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 Dtel_ril_test.cpp710 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 Dcellular_data_test.cpp235 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 Dzero_branch_test.cpp2713 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()

Completed in 32 milliseconds