feat:add CloseUnFinishedUssd interfaces

Signed-off-by: w00636648 <wangziming14@huawei.com>
This commit is contained in:
w00636648 2023-03-16 21:23:04 +08:00
parent 6f52f1b6e1
commit 21f8bed201
4 changed files with 5 additions and 5 deletions

View File

@ -116,7 +116,7 @@ public:
int32_t CallSrvccStatusNotice(const HDI::Ril::V1_0::SrvccStatus &srvccStatus);
int32_t CallEmergencyNotice(const HDI::Ril::V1_0::EmergencyInfoList &emergencyInfoList);
int32_t CallRsrvccStatusNotify();
int32_t CloseUnFinishedUssdResponse(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo);
int32_t CloseUnFinishedUssdResponse(const HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo);
private:
void BuildEmergencyInfoList(std::shared_ptr<EmergencyInfoList> emergencyCallList,

View File

@ -84,7 +84,7 @@ public:
int32_t GetCallFailReasonResponse(
const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo, int32_t callFail) override;
int32_t SetBarringPasswordResponse(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo) override;
int32_t CloseUnFinishedUssdResponse(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo) override;
int32_t CloseUnFinishedUssdResponse(const HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo) override;
// Data
int32_t PdpContextListUpdated(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo,

View File

@ -296,7 +296,7 @@ int32_t TelRilCall::SetBarringPasswordResponse(const HDI::Ril::V1_0::RilRadioRes
return Response(TELEPHONY_LOG_FUNC_NAME, responseInfo);
}
int32_t TelRilCall::CloseUnFinishedUssdResponse(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo)
int32_t TelRilCall::CloseUnFinishedUssdResponse(const HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo)
{
return Response(TELEPHONY_LOG_FUNC_NAME, responseInfo);
}
@ -516,7 +516,7 @@ int32_t TelRilCall::SetBarringPassword(
int32_t TelRilCall::CloseUnFinishedUssd(const AppExecFwk::InnerEvent::Pointer &result)
{
return Request(
TELEPHONY_LOG_FUNC_NAME, result, HREQ_CALL_CLOSE_UNFINISHED_USSD, &HDI::Ril::V1_0::IRil::CloseUnFinishedUssd);
TELEPHONY_LOG_FUNC_NAME, result, HREQ_CALL_CLOSE_UNFINISHED_USSD, &HDI::Ril::V1_1::IRil::CloseUnFinishedUssd);
}
int32_t TelRilCall::CallStateUpdated()

View File

@ -240,7 +240,7 @@ int32_t TelRilCallback::SetBarringPasswordResponse(const HDI::Ril::V1_0::RilRadi
return Response(responseInfo, &TelRilManager::GetTelRilCall, &TelRilCall::SetBarringPasswordResponse);
}
int32_t TelRilCallback::CloseUnFinishedUssdResponse(const HDI::Ril::V1_0::RilRadioResponseInfo &responseInfo)
int32_t TelRilCallback::CloseUnFinishedUssdResponse(const HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo)
{
return Response(responseInfo, &TelRilManager::GetTelRilCall, &TelRilCall::CloseUnFinishedUssdResponse);
}