mirror of
https://gitee.com/openharmony/telephony_core_service
synced 2024-11-23 16:09:48 +00:00
feat:add CloseUnFinishedUssd interfaces
Signed-off-by: w00636648 <wangziming14@huawei.com>
This commit is contained in:
parent
6f52f1b6e1
commit
21f8bed201
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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()
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user