Home
last modified time | relevance | path

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

/drivers/peripheral/audio/test/unittest/supportlibs/interface_lib_capture/src/
Daudio_alsa_if_lib_capture_test.cpp325 bool pause = true; variable
328 handleData->captureMode.ctlParam.pause = false;
335 pause = handleData->captureMode.ctlParam.pause;
336 EXPECT_EQ(false, pause);
344 bool pause = false; variable
347 handleData->captureMode.ctlParam.pause = true;
354 pause = handleData->captureMode.ctlParam.pause;
355 EXPECT_EQ(true, pause);
/drivers/peripheral/audio/test/unittest/supportlibs/interface_lib_render/src/
Daudio_alsa_if_lib_render_test.cpp330 bool pause = true; variable
333 handleData->renderMode.ctlParam.pause = false;
340 pause = handleData->renderMode.ctlParam.pause;
341 EXPECT_EQ(false, pause);
349 bool pause = false; variable
352 handleData->renderMode.ctlParam.pause = true;
359 pause = handleData->renderMode.ctlParam.pause;
360 EXPECT_EQ(true, pause);
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/
Daudio_render.cpp93 hwRender->renderParam.renderMode.ctlParam.pause = false; in AudioRenderStop()
107 if (hwRender->renderParam.renderMode.ctlParam.pause) { in AudioRenderPause()
121 hwRender->renderParam.renderMode.ctlParam.pause = true; in AudioRenderPause()
132 if (!hwRender->renderParam.renderMode.ctlParam.pause) { in AudioRenderResume()
144 hwRender->renderParam.renderMode.ctlParam.pause = false; in AudioRenderResume()
/drivers/peripheral/audio/hdi_service/primary_impl/src/
Daudio_capture.c127 if (hwCapture->captureParam.captureMode.ctlParam.pause) { in AudioCapturePause()
142 bool pauseStatus = hwCapture->captureParam.captureMode.ctlParam.pause; in AudioCapturePause()
143 hwCapture->captureParam.captureMode.ctlParam.pause = true; in AudioCapturePause()
149 hwCapture->captureParam.captureMode.ctlParam.pause = pauseStatus; in AudioCapturePause()
164 if (!hwCapture->captureParam.captureMode.ctlParam.pause) { in AudioCaptureResume()
179 bool resumeStatus = hwCapture->captureParam.captureMode.ctlParam.pause; in AudioCaptureResume()
180 hwCapture->captureParam.captureMode.ctlParam.pause = false; in AudioCaptureResume()
186 hwCapture->captureParam.captureMode.ctlParam.pause = resumeStatus; in AudioCaptureResume()
Daudio_render.c185 if (hwRender->renderParam.renderMode.ctlParam.pause) { in AudioRenderPause()
200 bool pauseStatus = hwRender->renderParam.renderMode.ctlParam.pause; in AudioRenderPause()
202 hwRender->renderParam.renderMode.ctlParam.pause = true; in AudioRenderPause()
207 hwRender->renderParam.renderMode.ctlParam.pause = pauseStatus; in AudioRenderPause()
222 if (!hwRender->renderParam.renderMode.ctlParam.pause) { in AudioRenderResume()
237 bool resumeStatus = hwRender->renderParam.renderMode.ctlParam.pause; in AudioRenderResume()
239 hwRender->renderParam.renderMode.ctlParam.pause = false; in AudioRenderResume()
244 hwRender->renderParam.renderMode.ctlParam.pause = resumeStatus; in AudioRenderResume()
/drivers/peripheral/audio/supportlibs/alsa_adapter/src/
Dalsa_lib_capture.c38 static int32_t AudioCaptureSetPauseState(snd_pcm_t *pcm, int32_t pause) in AudioCaptureSetPauseState() argument
47 if (pause == AUDIO_ALSALIB_IOCTRL_RESUME) { in AudioCaptureSetPauseState()
60 if (pause == AUDIO_ALSALIB_IOCTRL_PAUSE) { in AudioCaptureSetPauseState()
75 int32_t pause; in AudioCtlCaptureSetPauseStu() local
91pause = handleData->captureMode.ctlParam.pause ? AUDIO_ALSALIB_IOCTRL_PAUSE : AUDIO_ALSALIB_IOCTRL… in AudioCtlCaptureSetPauseStu()
92 ret = AudioCaptureSetPauseState(cardIns->capturePcmHandle, pause); in AudioCtlCaptureSetPauseStu()
Dalsa_lib_render.c1048 if (handleData->renderMode.ctlParam.pause) { in AudioOutputRenderWrite()
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/include/
Daudio_internal.h227 bool pause; member
/drivers/peripheral/audio/test/systemtest/supportlibs/common/capture/src/
Daudio_libcapture_test.cpp519 hwCapture->captureParam.captureMode.ctlParam.pause = 1;
551 hwCapture->captureParam.captureMode.ctlParam.pause = 0;
Daudio_alsa_libcapture_test.cpp753 hwCapture->captureParam.captureMode.ctlParam.pause = 1;
779 hwCapture->captureParam.captureMode.ctlParam.pause = 0;
/drivers/peripheral/audio/test/systemtest/supportlibs/common/render/src/
Daudio_librender_test.cpp626 hwRender->renderParam.renderMode.ctlParam.pause = 1;
652 hwRender->renderParam.renderMode.ctlParam.pause = 0;
Daudio_alsa_librender_test.cpp834 hwRender->renderParam.renderMode.ctlParam.pause = 1;
861 hwRender->renderParam.renderMode.ctlParam.pause = 0;
/drivers/peripheral/audio/hdi_service/primary_impl/include/
Daudio_internal.h179 bool pause; member
/drivers/peripheral/audio/hal/hdi_passthrough/include/
Daudio_internal.h187 bool pause; member
/drivers/peripheral/audio/supportlibs/adm_adapter/src/
Daudio_interface_lib_capture.c120 elemCaptureValue.value[0] = (int32_t)handleData->captureMode.ctlParam.pause; in AudioCtlCaptureSetPauseBuf()
152 cmdId = handleData->captureMode.ctlParam.pause ? in AudioCtlCaptureSetPauseStu()
Daudio_interface_lib_render.c171 elemValue.value[0] = (int32_t)handleData->renderMode.ctlParam.pause; in AudioCtlRenderSetPauseBuf()
202 cmdId = handleData->renderMode.ctlParam.pause ? in AudioCtlRenderSetPauseStu()
/drivers/interface/codec/v1_0/
DCodecTypes.idl227 …CODEC_STATE_PAUSE, /**< The component has received the pause command…
/drivers/interface/audio/v1_0/
DIAudioCapture.idl370 * @brief Query whether the vendor support pause and resume.
DIAudioRender.idl454 * @brief Query whether the vendor support pause and resume.