Home
last modified time | relevance | path

Searched refs:supported (Results 1 - 25 of 41) sorted by relevance

12

/drivers/peripheral/audio/test/systemtest/hdi_service/common/capture/src/
H A Daudio_idl_hdicapture_scene_test.cpp73 bool supported = false; in HWTEST_F() local
79 ret = capture->CheckSceneCapability(capture, &scenes, &supported); in HWTEST_F()
81 EXPECT_TRUE(supported); in HWTEST_F()
93 bool supported = true; in HWTEST_F() local
99 ret = capture->CheckSceneCapability(capture, &scenes, &supported); in HWTEST_F()
112 bool supported = true; in HWTEST_F() local
119 ret = capture->CheckSceneCapability(captureNull, &scenes, &supported); in HWTEST_F()
134 bool supported = true; in HWTEST_F() local
137 ret = capture->CheckSceneCapability(capture, scenes, &supported); in HWTEST_F()
146 * @tc.desc Test AudioCreateCapture interface,return -3 if the parameter supported i
[all...]
/drivers/peripheral/audio/test/systemtest/hdi_service/common/render/src/
H A Daudio_idl_hdirender_scene_test.cpp72 bool supported = false; in HWTEST_F() local
79 ret = render->CheckSceneCapability(render, &scenes, &supported); in HWTEST_F()
81 EXPECT_TRUE(supported); in HWTEST_F()
92 bool supported = true; in HWTEST_F() local
99 ret = render->CheckSceneCapability(render, &scenes, &supported); in HWTEST_F()
111 bool supported = true; in HWTEST_F() local
119 ret = render->CheckSceneCapability(renderNull, &scenes, &supported); in HWTEST_F()
131 bool supported = true; in HWTEST_F() local
135 ret = render->CheckSceneCapability(render, scenes, &supported); in HWTEST_F()
141 * @tc.desc Test AudioRenderCheckSceneCapability interface,return -3 if the supported i
[all...]
/drivers/peripheral/audio/interfaces/include/
H A Daudio_scene.h43 * select an audio scene and check whether the configuration of an audio scene is supported.
50 * @brief Checks whether the configuration of an audio scene is supported.
54 * @param supported Indicates the pointer to the variable specifying whether the configuration is supported.
55 * Value <b>true</b> means that the configuration is supported, and <b>false</b> means the opposite.
59 int32_t (*CheckSceneCapability)(AudioHandle handle, const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/audio/interfaces/2.0/include/
H A Daudio_scene.h44 * select an audio scene and check whether the configuration of an audio scene is supported.
51 * @brief Checks whether the configuration of an audio scene is supported.
55 * @param supported Indicates the pointer to the variable specifying whether the configuration is supported.
56 * Value <b>true</b> means that the configuration is supported, and <b>false</b> means the opposite.
60 int32_t (*CheckSceneCapability)(AudioHandle handle, const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/bluetooth/audio/interfaces/include/
H A Daudio_scene.h43 * select an audio scene and check whether the configuration of an audio scene is supported.
50 * @brief Checks whether the configuration of an audio scene is supported.
54 * @param supported Indicates the pointer to the variable specifying whether the configuration is supported.
55 * Value <b>true</b> means that the configuration is supported, and <b>false</b> means the opposite.
59 int32_t (*CheckSceneCapability)(AudioHandle handle, const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/audio/test/fuzztest/audio_hdi_fuzzer/audiocapture_fuzzer/
H A Daudiocapture_fuzzer.cpp84 bool supported = false; in CaptureFucSwitch() local
86 capture->CheckSceneCapability(capture, &g_scene, &supported); in CaptureFucSwitch()
/drivers/peripheral/audio/test/fuzztest/audio_hdi_fuzzer/audiorender_fuzzer/
H A Daudiorender_fuzzer.cpp85 bool supported = false; in RenderFucSwitch() local
87 render->CheckSceneCapability(render, &g_scene, &supported); in RenderFucSwitch()
/drivers/peripheral/audio/test/unittest/common/render/
H A Daudio_render_common_test.cpp315 bool supported = false; in HWTEST_F() local
316 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->CheckSceneCapability(nullptr, &scene, &supported)); in HWTEST_F()
321 bool supported = false; in HWTEST_F() local
322 EXPECT_EQ(HDF_ERR_INVALID_PARAM, render_->CheckSceneCapability(render_, nullptr, &supported)); in HWTEST_F()
334 bool supported = false; in HWTEST_F() local
337 int32_t ret = render_->CheckSceneCapability(render_, &scene, &supported); in HWTEST_F()
344 bool supported = false; in HWTEST_F() local
347 EXPECT_EQ(HDF_SUCCESS, render_->CheckSceneCapability(render_, &scene, &supported)); in HWTEST_F()
/drivers/peripheral/audio/interfaces/sound/v1_0/
H A Diaudio_render_vdi.h43 bool *supported);
H A Diaudio_capture_vdi.h35 bool *supported);
/drivers/peripheral/bluetooth/audio/hal/hdi_binder/proxy/include/
H A Daudio_proxy_internal.h47 const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/include/
H A Dfast_audio_render.h34 int32_t FastRenderCheckSceneCapability(AudioHandle handle, const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/
H A Dfast_audio_render.cpp135 int32_t FastRenderCheckSceneCapability(AudioHandle handle, const struct AudioSceneDescriptor *scene, bool *supported) in FastRenderCheckSceneCapability() argument
140 (void)supported; in FastRenderCheckSceneCapability()
/drivers/peripheral/audio/test/hal_mock/
H A Daudio_render_mock.c135 bool *supported) in CheckSceneCapability()
141 (void *)supported; in CheckSceneCapability()
134 CheckSceneCapability(struct IAudioRenderVdi* render, const struct AudioSceneDescriptor *scene, bool *supported) CheckSceneCapability() argument
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/src/
H A Daudio_capture_ext_impl.cpp176 DHLOGI("Check whether pause and resume is supported, not support yet."); in IsSupportsPauseAndResume()
182 int32_t AudioCaptureExtImpl::CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) in CheckSceneCapability() argument
186 supported = false; in CheckSceneCapability()
H A Daudio_capture_interface_impl.cpp214 DHLOGI("Check whether pause and resume is supported, not support yet."); in IsSupportsPauseAndResume()
220 int32_t AudioCaptureInterfaceImpl::CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) in CheckSceneCapability() argument
224 supported = false; in CheckSceneCapability()
H A Daudio_render_ext_impl.cpp183 DHLOGD("Check whether drain is supported, not support yet."); in IsSupportsDrain()
294 DHLOGD("Check whether pause and resume is supported, not support yet."); in IsSupportsPauseAndResume()
300 int32_t AudioRenderExtImpl::CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) in CheckSceneCapability() argument
304 (void)supported; in CheckSceneCapability()
H A Daudio_render_interface_impl.cpp190 DHLOGI("Check whether drain is supported, not support yet."); in IsSupportsDrain()
303 DHLOGI("Check whether pause and resume is supported, not support yet."); in IsSupportsPauseAndResume()
309 int32_t AudioRenderInterfaceImpl::CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) in CheckSceneCapability() argument
313 (void)supported; in CheckSceneCapability()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_capture_extension/src/
H A Daudio_capture_ext_impl_test.cpp139 bool supported = true; in HWTEST_F() local
142 EXPECT_EQ(HDF_SUCCESS, audioCapturelatencyImpl_->CheckSceneCapability(scene, supported)); in HWTEST_F()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/
H A Daudio_capture_ext_impl.h48 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override;
H A Daudio_capture_interface_impl.h46 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override;
H A Daudio_render_interface_impl.h59 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override;
H A Daudio_render_ext_impl.h56 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override;
/drivers/peripheral/audio/hdi_service/primary_impl/include/
H A Daudio_internal.h77 AUDIO_ERR_NOT_SUPPORT = -2, /* operation is not supported */
482 struct IAudioRender *handle, const struct AudioSceneDescriptor *scene, bool *supported);
519 struct IAudioCapture *handle, const struct AudioSceneDescriptor *scene, bool *supported);
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_test_utils/
H A Daudio_test_utils.h141 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override
302 int32_t CheckSceneCapability(const AudioSceneDescriptor &scene, bool &supported) override

Completed in 14 milliseconds

12