Home
last modified time | relevance | path

Searched refs:voiceMailMsgResult (Results 1 – 19 of 19) sorted by relevance

/base/telephony/state_registry/test/unittest/state_test/
Dstate_registry_observer.h74 void OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) in OnVoiceMailMsgIndicatorUpdated() argument
78 voiceMailMsgResult); in OnVoiceMailMsgIndicatorUpdated()
Dstate_registry_test.cpp228 bool voiceMailMsgResult = true; in UpdateVoiceMailMsgIndicator() local
230 slotId, voiceMailMsgResult); in UpdateVoiceMailMsgIndicator()
/base/telephony/state_registry/frameworks/js/napi/src/
Dnapi_telephony_observer.cpp138 void NapiTelephonyObserver::OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) in OnVoiceMailMsgIndicatorUpdated() argument
141 voiceMailMsgResult); in OnVoiceMailMsgIndicatorUpdated()
143 std::make_unique<VoiceMailMsgIndicatorUpdate>(slotId, voiceMailMsgResult); in OnVoiceMailMsgIndicatorUpdated()
/base/telephony/state_registry/frameworks/js/napi/include/
Dupdate_infos.h87 VoiceMailMsgIndicatorUpdate(int32_t slotId, bool voiceMailMsgResult) in VoiceMailMsgIndicatorUpdate()
88 : UpdateInfo(slotId), voiceMailMsgResult_(voiceMailMsgResult) {} in VoiceMailMsgIndicatorUpdate()
Dnapi_telephony_observer.h38 void OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) override;
/base/telephony/state_registry/frameworks/native/observer/include/
Dtelephony_observer_proxy.h45 void OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult);
/base/telephony/core_service/frameworks/native/src/
Dtelephony_state_registry_client.cpp179 … TelephonyStateRegistryClient::UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) in UpdateVoiceMailMsgIndicator() argument
186 return proxy->UpdateVoiceMailMsgIndicator(slotId, voiceMailMsgResult); in UpdateVoiceMailMsgIndicator()
Dtelephony_state_registry_proxy.cpp382 …t TelephonyStateRegistryProxy::UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) in UpdateVoiceMailMsgIndicator() argument
393 if (!in.WriteBool(voiceMailMsgResult)) { in UpdateVoiceMailMsgIndicator()
/base/telephony/core_service/interfaces/innerkits/include/
Dtelephony_observer_broker.h59 virtual void OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) = 0;
Di_telephony_state_notify.h122 virtual int32_t UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) = 0;
Dtelephony_state_registry_client.h117 int32_t UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult);
Dtelephony_state_registry_proxy.h51 int32_t UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) override;
/base/telephony/state_registry/frameworks/native/observer/src/
Dtelephony_observer.cpp46 void TelephonyObserver::OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) {} in OnVoiceMailMsgIndicatorUpdated() argument
172 bool voiceMailMsgResult = data.ReadBool(); in OnVoiceMailMsgIndicatorUpdatedInner() local
173 OnVoiceMailMsgIndicatorUpdated(slotId, voiceMailMsgResult); in OnVoiceMailMsgIndicatorUpdatedInner()
Dtelephony_observer_proxy.cpp246 void TelephonyObserverProxy::OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) in OnVoiceMailMsgIndicatorUpdated() argument
257 dataParcel.WriteBool(voiceMailMsgResult); in OnVoiceMailMsgIndicatorUpdated()
/base/telephony/state_registry/interfaces/innerkits/observer/
Dtelephony_observer.h118 virtual void OnVoiceMailMsgIndicatorUpdated(int32_t slotId, bool voiceMailMsgResult) override;
/base/telephony/state_registry/services/include/
Dtelephony_state_registry_service.h58 int32_t UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) override;
/base/telephony/state_registry/services/src/
Dtelephony_state_registry_stub.cpp322 bool voiceMailMsgResult = data.ReadBool(); in OnUpdateVoiceMailMsgIndicator() local
323 int32_t ret = UpdateVoiceMailMsgIndicator(slotId, voiceMailMsgResult); in OnUpdateVoiceMailMsgIndicator()
Dtelephony_state_registry_service.cpp352 …TelephonyStateRegistryService::UpdateVoiceMailMsgIndicator(int32_t slotId, bool voiceMailMsgResult) in UpdateVoiceMailMsgIndicator() argument
363 voiceMailMsgResult_[slotId] = voiceMailMsgResult; in UpdateVoiceMailMsgIndicator()
369 record.telephonyObserver_->OnVoiceMailMsgIndicatorUpdated(slotId, voiceMailMsgResult); in UpdateVoiceMailMsgIndicator()
/base/telephony/state_registry/test/fuzztest/telephonystateregistry_fuzzer/
Dtelephonystateregistry_fuzzer.cpp371 bool voiceMailMsgResult = static_cast<bool>(size % BOOL_NUM); in UpdateVoiceMailMsgIndicator() local
374 dataMessageParcel.WriteBool(voiceMailMsgResult); in UpdateVoiceMailMsgIndicator()