/drivers/peripheral/audio/test/systemtest/hdi_service/common/render/src/ |
H A D | audio_idl_hdirender_volume_test.cpp | 430 ret = render->GetVolume(render, &volumeInit); in HWTEST_F() 435 ret = render->GetVolume(render, &volumeLow); in HWTEST_F() 440 ret = render->GetVolume(render, &volumeMid); in HWTEST_F() 445 ret = render->GetVolume(render, &volumeHigh); in HWTEST_F() 467 ret = render->GetVolume(render, &volumeMin); in HWTEST_F() 473 ret = render->GetVolume(render, &volumeMax); in HWTEST_F() 512 ret = render->GetVolume(render, &volume); in HWTEST_F() 533 ret = render->GetVolume(render, &volume); in HWTEST_F() 552 ret = render->GetVolume(renderNull, &volume); in HWTEST_F() 566 ret = render->GetVolume(rende in HWTEST_F() [all...] |
/drivers/peripheral/audio/interfaces/include/ |
H A D | audio_volume.h | 80 * @see GetVolume 92 int32_t (*GetVolume)(AudioHandle handle, float *volume); member
|
/drivers/peripheral/distributed_audio/interface/audio/v1_0/ |
H A D | i_audio_volume.h | 29 virtual int32_t GetVolume(float &volume) = 0;
|
/drivers/peripheral/audio/test/systemtest/hdi_service/common/capture/src/ |
H A D | audio_idl_hdicapture_volume_test.cpp | 194 ret = capture->GetVolume(capture, &volumeInit); in HWTEST_F() 199 ret = capture->GetVolume(capture, &volumeLow); in HWTEST_F() 204 ret = capture->GetVolume(capture, &volumeMid); in HWTEST_F() 209 ret = capture->GetVolume(capture, &volumeHigh); in HWTEST_F() 231 ret = capture->GetVolume(capture, &volumeMin); in HWTEST_F() 237 ret = capture->GetVolume(capture, &volumeMax); in HWTEST_F() 276 ret = capture->GetVolume(capture, &volume); in HWTEST_F() 296 ret = capture->GetVolume(capture, &volume); in HWTEST_F() 315 ret = capture->GetVolume(captureNull, &volume); in HWTEST_F()
|
/drivers/peripheral/audio/interfaces/2.0/include/ |
H A D | audio_volume.h | 80 * @see GetVolume 92 int32_t (*GetVolume)(AudioHandle handle, float *volume); member
|
/drivers/peripheral/bluetooth/audio/interfaces/include/ |
H A D | audio_volume.h | 80 * @see GetVolume 92 int32_t (*GetVolume)(AudioHandle handle, float *volume); member
|
/drivers/peripheral/audio/supportlibs/alsa_adapter/include/ |
H A D | alsa_snd_render.h | 52 int32_t (*GetVolume)(struct AlsaRender *, long *);
member
|
H A D | alsa_snd_capture.h | 52 int32_t (*GetVolume)(struct AlsaCapture *, long *);
member
|
/drivers/peripheral/audio/supportlibs/alsa_adapter/src/ |
H A D | vendor_render.c | 149 ret = renderIns->GetVolume(renderIns, &vol);
in RenderSetMuteImpl() 151 AUDIO_FUNC_LOGE("GetVolume failed!");
in RenderSetMuteImpl() 223 renderIns->GetVolume = RenderGetVolumeImpl;
in RenderOverrideFunc()
|
H A D | vendor_capture.c | 141 ret = captureIns->GetVolume(captureIns, &vol);
in CaptureSetMuteImpl() 143 AUDIO_FUNC_LOGE("GetVolume failed!");
in CaptureSetMuteImpl() 211 captureIns->GetVolume = CaptureGetVolumeImpl;
in CaptureOverrideFunc()
|
/drivers/peripheral/audio/test/unittest/common/capture/ |
H A D | audio_capture_common_test.cpp | 571 EXPECT_NE(capture_->GetVolume, nullptr);
in HWTEST_F() 575 ret = capture_->GetVolume(capture_, &volume);
in HWTEST_F() 605 /* capture GetVolume cases */
609 EXPECT_NE(capture_->GetVolume, nullptr);
in HWTEST_F() 611 int32_t ret = capture_->GetVolume(capture_, &volume);
in HWTEST_F() 618 EXPECT_NE(capture_->GetVolume, nullptr);
in HWTEST_F() 620 int32_t ret = capture_->GetVolume(nullptr, nullptr);
in HWTEST_F() 623 ret = capture_->GetVolume(capture_, nullptr);
in HWTEST_F() 626 ret = capture_->GetVolume(nullptr, &volume);
in HWTEST_F()
|
/drivers/peripheral/audio/interfaces/sound/v1_0/ |
H A D | iaudio_render_vdi.h | 48 int32_t (*GetVolume)(struct IAudioRenderVdi *self, float *volume); member
|
H A D | iaudio_capture_vdi.h | 40 int32_t (*GetVolume)(struct IAudioCaptureVdi *self, float *volume); member
|
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/ |
H A D | audio_capture_ext_impl.h | 53 int32_t GetVolume(float &volume) override;
|
H A D | audio_capture_interface_impl.h | 51 int32_t GetVolume(float &volume) override;
|
H A D | audio_render_interface_impl.h | 64 int32_t GetVolume(float &volume) override;
|
H A D | audio_render_ext_impl.h | 61 int32_t GetVolume(float &volume) override;
|
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_test_utils/ |
H A D | audio_test_utils.h | 166 int32_t GetVolume(float &volume) override 327 int32_t GetVolume(float &volume) override
|
/drivers/peripheral/audio/hdi_service/primary_impl/vdi_src/ |
H A D | audio_capture_vdi.c | 272 CHECK_NULL_PTR_RETURN_VALUE(vdiCapture->GetVolume, HDF_ERR_INVALID_PARAM); in AudioCaptureGetVolumeVdi() 274 int32_t ret = vdiCapture->GetVolume(vdiCapture, volume); in AudioCaptureGetVolumeVdi() 276 AUDIO_FUNC_LOGE("audio capture GetVolume fail, ret=%{public}d", ret); in AudioCaptureGetVolumeVdi() 762 capture->GetVolume = AudioCaptureGetVolumeVdi; in AudioInitCaptureInstanceVdi()
|
/drivers/peripheral/audio/test/benchmarktest/render/ |
H A D | audio_render_benchmarktest.cpp | 568 BENCHMARK_F(AudioRenderBenchmarkTest, GetVolume)(benchmark::State &state)
in BENCHMARK_F() 575 ret = render_->GetVolume(render_, &val);
in BENCHMARK_F() 580 BENCHMARK_REGISTER_F(AudioRenderBenchmarkTest, GetVolume)->
|
/drivers/peripheral/audio/test/benchmarktest/capture/ |
H A D | audio_capture_benchmarktest.cpp | 410 BENCHMARK_F(AudioCaptureBenchmarkTest, GetVolume)(benchmark::State &state)
in BENCHMARK_F() 417 ret = capture_->GetVolume(capture_, &volume);
in BENCHMARK_F() 422 BENCHMARK_REGISTER_F(AudioCaptureBenchmarkTest, GetVolume)->
|
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/ |
H A D | audio_adapter.cpp | 54 hwRender->common.volume.GetVolume = FastRenderGetVolume; in GetFastRenderFuncs() 92 hwRender->common.volume.GetVolume = AudioRenderGetVolume; in GetNormalRenderFuncs()
|
/drivers/peripheral/audio/test/hal_mock/ |
H A D | audio_render_mock.c | 192 static int32_t GetVolume(struct IAudioRenderVdi* render, float *volume)
in GetVolume() function
|
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/src/ |
H A D | audio_capture_ext_impl.cpp | 218 int32_t AudioCaptureExtImpl::GetVolume(float &volume) in GetVolume() function in OHOS::HDI::DistributedAudio::Audio::V1_0::AudioCaptureExtImpl
|
H A D | audio_capture_interface_impl.cpp | 256 int32_t AudioCaptureInterfaceImpl::GetVolume(float &volume) in GetVolume() function in OHOS::HDI::DistributedAudio::Audio::V1_0::AudioCaptureInterfaceImpl
|