Home
last modified time | relevance | path

Searched refs:Notify (Results 1 - 12 of 12) sorted by relevance

/drivers/peripheral/distributed_camera/hdi_service/test/fuzztest/dcameranotify_fuzzer/
H A Ddcameranotify_fuzzer.cpp42 DCameraProvider::GetInstance()->Notify(dhBase, event); in DcameraNotifyFuzzTest()
/drivers/peripheral/distributed_audio/hdi_service/audio_ext/v1_0/src/
H A Ddaudio_manager_interface_impl.cpp99 DHLOGI("Notify event. event type = %{public}d", event.type); in NotifyEvent()
100 int32_t ret = audioMgr_->Notify(adpName, devId, streamId, event); in NotifyEvent()
102 DHLOGE("Notify audio event failed. ret = %{public}d", ret); in NotifyEvent()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_manager_interface/src/
H A Daudio_manager_interface_impl_test.cpp140 * @tc.desc: Verify the Notify function.
151 EXPECT_EQ(ERR_DH_AUDIO_HDF_INVALID_OPERATION, audioManagerInterfaceImpl_->Notify(adpName, devId, streamId, event)); in HWTEST_F()
156 * @tc.desc: Verify the Notify function.
170 EXPECT_EQ(ERR_DH_AUDIO_HDF_FAIL, audioManagerInterfaceImpl_->Notify(adpName, devId, streamId, event)); in HWTEST_F()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/
H A Daudio_manager_interface_impl.h69 int32_t Notify(const std::string &adpName, const uint32_t devId,
H A Daudio_adapter_interface_impl.h102 int32_t Notify(const uint32_t devId, const uint32_t streamId, const DAudioEvent &event);
/drivers/peripheral/distributed_camera/hdi_service/include/dcamera_provider/
H A Ddcamera_provider.h46 int32_t Notify(const DHBase& dhBase, const DCameraHDFEvent& event) override;
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/src/
H A Daudio_manager_interface_impl.cpp170 DHLOGE("Notify audio fwk failed, ret = %{public}d.", ret); in AddAudioDevice()
197 DHLOGE("Notify audio fwk failed, ret = %{public}d.", ret); in RemoveAudioDevice()
226 int32_t AudioManagerInterfaceImpl::Notify(const std::string &adpName, const uint32_t devId, in Notify() function in OHOS::HDI::DistributedAudio::Audio::V1_0::AudioManagerInterfaceImpl
229 DHLOGI("Notify event, adapter name: %{public}s. event type: %{public}d", GetAnonyString(adpName).c_str(), in Notify()
236 DHLOGE("Notify failed, can not find adapter."); in Notify()
245 int32_t ret = adp->Notify(devId, streamId, event); in Notify()
247 DHLOGE("Notify failed, adapter return: %{public}d.", ret); in Notify()
255 DHLOGD("Notify audio fwk event(type:%{public}d, adapter:%{public}s, pin:%{public}d).", event.eventType, in NotifyFwk()
272 DHLOGI("Notify audio fwk success."); in NotifyFwk()
H A Daudio_adapter_interface_impl.cpp518 int32_t AudioAdapterInterfaceImpl::Notify(const uint32_t devId, const uint32_t streamId, const DAudioEvent &event) in Notify() function in OHOS::HDI::DistributedAudio::Audio::V1_0::AudioAdapterInterfaceImpl
522 DHLOGI("Notify event: VOLUME_CHANGE, event content: %{public}s.", event.content.c_str()); in Notify()
525 DHLOGI("Notify event: FOCUS_CHANGE, event content: %{public}s.", event.content.c_str()); in Notify()
528 DHLOGI("Notify event: RENDER_STATE_CHANGE, event content: %{public}s.", event.content.c_str()); in Notify()
969 DHLOGE("Notify vol failed."); in HandleVolumeChangeEvent()
1033 DHLOGE("Notify Focus failed."); in HandleFocusChangeEvent()
1055 DHLOGE("Notify render state failed."); in HandleRenderStateChangeEvent()
1080 DHLOGD("Notify event type %{public}d, event content: %{public}s.", event.type, event.content.c_str()); in HandleSANotifyEvent()
1121 DHLOGE("Notify not support event type %{public}d, event content: %{public}s.", in HandleSANotifyEvent()
1189 DHLOGE("Notify fw in HandleDeviceClosed()
[all...]
/drivers/peripheral/distributed_camera/hdi_service/include/dcamera_device/
H A Ddcamera_device.h80 DCamRetCode Notify(const std::shared_ptr<DCameraHDFEvent> &event);
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_adapter_interface/src/
H A Daudio_adapter_interface_impl_test.cpp543 * @tc.desc: Verify the Notify function.
557 EXPECT_NE(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
562 * @tc.desc: Verify the Notify function.
576 EXPECT_NE(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
579 EXPECT_NE(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
582 EXPECT_EQ(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
585 EXPECT_EQ(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
590 * @tc.desc: Verify the Notify function.
604 EXPECT_EQ(HDF_SUCCESS, AdapterTest_->Notify(devId, streamId, event)); in HWTEST_F()
607 EXPECT_EQ(HDF_SUCCESS, AdapterTest_->Notify(devI in HWTEST_F()
[all...]
/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_provider/
H A Ddcamera_provider.cpp226 int32_t DCameraProvider::Notify(const DHBase& dhBase, const DCameraHDFEvent& event) in Notify() function in OHOS::DistributedHardware::DCameraProvider
229 DHLOGE("DCameraProvider::Notify, devId or dhId is invalid."); in Notify()
233 DHLOGE("DCameraProvider::Notify, input dcamera hdf event is null."); in Notify()
236 DHLOGI("DCameraProvider::Notify for {devId: %{public}s, dhId: %{public}s}.", in Notify()
241 DHLOGE("DCameraProvider::Notify failed, dcamera device not found."); in Notify()
249 return device->Notify(dCameraEvent); in Notify()
/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_device/
H A Ddcamera_device.cpp524 DCamRetCode DCameraDevice::Notify(const std::shared_ptr<DCameraHDFEvent> &event) in Notify() function in OHOS::DistributedHardware::DCameraDevice
527 DHLOGI("DCameraDevice::Notify for event type = %{public}d, result = %{public}d, content = %{public}s.", in Notify()

Completed in 9 milliseconds