mirror of
https://gitee.com/openharmony/xts_hats
synced 2024-11-23 06:50:00 +00:00
nv refresh indication
Signed-off-by: Xianru Chen <chenxianru2@huawei.com>
This commit is contained in:
parent
b692e4fd0f
commit
33e7f2d08a
@ -310,6 +310,8 @@ public:
|
||||
int32_t GetLinkCapabilityResponse(
|
||||
const RilRadioResponseInfo &responseInfo, const DataLinkCapability &dataLinkCapability) override;
|
||||
int32_t CleanAllConnectionsResponse(const RilRadioResponseInfo &responseInfo) override;
|
||||
int32_t NcfgFinishedResult(const RilRadioResponseInfo &responseInfo, int32_t mode) override;
|
||||
int32_t RestartRildNvMatch(const RilRadioResponseInfo &responseInfo, int32_t mode) override;
|
||||
|
||||
// Modem
|
||||
int32_t RadioStateUpdated(const RilRadioResponseInfo &responseInfo, int32_t state) override;
|
||||
@ -1920,6 +1922,18 @@ int32_t RilCallback::DsdsModeUpdated(const RilRadioResponseInfo &responseInfo, i
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::NcfgFinishedResult(const RilRadioResponseInfo &responseInfo, int32_t state)
|
||||
{
|
||||
HDF_LOGI("DsdsModeUpdated state : %{public}d", state);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::RestartRildNvMatch(const RilRadioResponseInfo &responseInfo, int32_t state)
|
||||
{
|
||||
HDF_LOGI("DsdsModeUpdated state : %{public}d", state);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::ShutDownResponse(const RilRadioResponseInfo &responseInfo)
|
||||
{
|
||||
HDF_LOGI("ShutDownResponse");
|
||||
|
@ -1597,6 +1597,18 @@ int32_t RilCallback::DsdsModeUpdated(const RilRadioResponseInfo &responseInfo, i
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::NcfgFinishedResult(const RilRadioResponseInfo &responseInfo, int32_t state)
|
||||
{
|
||||
HDF_LOGI("NcfgFinishedResult state : %{public}d", state);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::RestartRildNvMatch(const RilRadioResponseInfo &responseInfo, int32_t state)
|
||||
{
|
||||
HDF_LOGI("RestartRildNvMatch state : %{public}d", state);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t RilCallback::ShutDownResponse(const RilRadioResponseInfo &responseInfo)
|
||||
{
|
||||
g_shutDownResponseFlag = true;
|
||||
|
@ -363,6 +363,9 @@ public:
|
||||
int32_t VoiceRadioTechUpdated(const RilRadioResponseInfo &responseInfo,
|
||||
const VoiceRadioTechnology &voiceRadioTechnology) override;
|
||||
int32_t DsdsModeUpdated(const RilRadioResponseInfo &responseInfo, int32_t mode) override;
|
||||
int32_t NcfgFinishedResult(const RilRadioResponseInfo &responseInfo, int32_t state) override;
|
||||
int32_t RestartRildNvMatch(const RilRadioResponseInfo &responseInfo, int32_t state) override;
|
||||
|
||||
int32_t ShutDownResponse(const RilRadioResponseInfo &responseInfo) override;
|
||||
int32_t SetRadioStateResponse(const RilRadioResponseInfo &responseInfo) override;
|
||||
int32_t GetRadioStateResponse(const RilRadioResponseInfo &responseInfo, int32_t state) override;
|
||||
|
Loading…
Reference in New Issue
Block a user