/drivers/peripheral/audio/interfaces/include/ |
D | audio_control.h | 127 … int32_t (*IsSupportsPauseAndResume)(AudioHandle handle, bool *supportPause, bool *supportResume);
|
/drivers/peripheral/audio/hdi_service/primary_impl/vendor_include/include/ |
D | i_audio_control.h | 127 … int32_t (*IsSupportsPauseAndResume)(AudioHandle handle, bool *supportPause, bool *supportResume);
|
/drivers/peripheral/audio/interfaces/2.0/include/ |
D | audio_control.h | 128 … int32_t (*IsSupportsPauseAndResume)(AudioHandle handle, bool *supportPause, bool *supportResume);
|
/drivers/peripheral/audio/interfaces/sound/v1_0/ |
D | iaudio_capture_vdi.h | 62 …int32_t (*IsSupportsPauseAndResume)(struct IAudioCaptureVdi *self, bool *supportPause, bool *suppo…
|
D | iaudio_render_vdi.h | 71 …int32_t (*IsSupportsPauseAndResume)(struct IAudioRenderVdi *self, bool *supportPause, bool *suppor…
|
/drivers/peripheral/audio/test/unittest/common/render/ |
D | audio_render_common_test.cpp | 866 bool supportPause = false; variable 868 int32_t ret = render_->IsSupportsPauseAndResume(nullptr, &supportPause, &supportResume); 874 ret = render_->IsSupportsPauseAndResume(render_, &supportPause, nullptr); 880 bool supportPause = false; variable 882 int32_t ret = render_->IsSupportsPauseAndResume(render_, &supportPause, &supportResume);
|
/drivers/peripheral/audio/test/unittest/common/capture/ |
D | audio_capture_common_test.cpp | 885 bool supportPause = false; variable 888 int32_t ret = capture_->IsSupportsPauseAndResume(capture_, &supportPause, &supportResume); 895 bool supportPause = false; variable 898 int32_t ret = capture_->IsSupportsPauseAndResume(nullptr, &supportPause, &supportResume); 904 ret = capture_->IsSupportsPauseAndResume(capture_, &supportPause, nullptr);
|
/drivers/peripheral/audio/hdi_service/primary_impl/vdi_src/ |
D | audio_capture_vdi.c | 680 int32_t AudioCaptureIsSupportsPauseAndResumeVdi(struct IAudioCapture *capture, bool *supportPause, … in AudioCaptureIsSupportsPauseAndResumeVdi() argument 683 CHECK_NULL_PTR_RETURN_VALUE(supportPause, HDF_ERR_INVALID_PARAM); in AudioCaptureIsSupportsPauseAndResumeVdi() 691 int32_t ret = vdiCapture->IsSupportsPauseAndResume(vdiCapture, supportPause, supportResume); in AudioCaptureIsSupportsPauseAndResumeVdi()
|
D | audio_render_vdi.c | 789 int32_t AudioRenderIsSupportsPauseAndResumeVdi(struct IAudioRender *render, bool *supportPause, boo… in AudioRenderIsSupportsPauseAndResumeVdi() argument 792 CHECK_NULL_PTR_RETURN_VALUE(supportPause, HDF_ERR_INVALID_PARAM); in AudioRenderIsSupportsPauseAndResumeVdi() 800 return vdiRender->IsSupportsPauseAndResume(vdiRender, supportPause, supportResume); in AudioRenderIsSupportsPauseAndResumeVdi()
|
/drivers/peripheral/audio/hdi_service/primary_impl/vendor_src/ |
D | audio_capture_vendor.c | 682 int32_t AudioHwiCaptureIsSupportsPauseAndResume(struct IAudioCapture *capture, bool *supportPause, … in AudioHwiCaptureIsSupportsPauseAndResume() argument 685 CHECK_NULL_PTR_RETURN_VALUE(supportPause, HDF_ERR_INVALID_PARAM); in AudioHwiCaptureIsSupportsPauseAndResume() 693 …int32_t ret = hwiCapture->control.IsSupportsPauseAndResume(hwiCapture, supportPause, supportResume… in AudioHwiCaptureIsSupportsPauseAndResume()
|
D | audio_render_vendor.c | 761 int32_t AudioHwiRenderIsSupportsPauseAndResume(struct IAudioRender *render, bool *supportPause, boo… in AudioHwiRenderIsSupportsPauseAndResume() argument 764 CHECK_NULL_PTR_RETURN_VALUE(supportPause, HDF_ERR_INVALID_PARAM); in AudioHwiRenderIsSupportsPauseAndResume() 772 return hwiRender->control.IsSupportsPauseAndResume(hwiRender, supportPause, supportResume); in AudioHwiRenderIsSupportsPauseAndResume()
|
/drivers/peripheral/audio/test/benchmarktest/capture/ |
D | audio_capture_benchmarktest.cpp | 674 bool supportPause = false; in BENCHMARK_F() local 678 ret = capture_->IsSupportsPauseAndResume(capture_, &supportPause, &supportResume); in BENCHMARK_F()
|
/drivers/peripheral/audio/test/benchmarktest/render/ |
D | audio_render_benchmarktest.cpp | 773 bool supportPause = false; in BENCHMARK_F() local 777 ret = render_->IsSupportsPauseAndResume(render_, &supportPause, &supportResume); in BENCHMARK_F()
|
/drivers/interface/audio/v1_0/ |
D | IAudioCapture.idl | 373 …* @param supportPause Indicates the state whether the vendor supports pausing. Value <b>true</b> m… 380 IsSupportsPauseAndResume([out] boolean supportPause, [out] boolean supportResume);
|
D | IAudioRender.idl | 457 …* @param supportPause Indicates the state whether the vendor supports pausing. Value <b>true</b> m… 464 IsSupportsPauseAndResume([out] boolean supportPause, [out] boolean supportResume);
|