Lines Matching refs:capture_handle

1556 static int hfp_capture_device_open(snd_pcm_t** capture_handle,  in hfp_capture_device_open()  argument
1565 err = snd_pcm_open(capture_handle, device_name, SND_PCM_STREAM_CAPTURE, 0); in hfp_capture_device_open()
1578 err = snd_pcm_hw_params_any(*capture_handle, hw_params); in hfp_capture_device_open()
1584 err = snd_pcm_hw_params_set_access(*capture_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED); in hfp_capture_device_open()
1590 err = snd_pcm_hw_params_set_format(*capture_handle, hw_params, SND_PCM_FORMAT_S16_LE); in hfp_capture_device_open()
1596 err = snd_pcm_hw_params_set_channels(*capture_handle, hw_params, alsa_config.channels); in hfp_capture_device_open()
1604 err = snd_pcm_hw_params_set_rate_near(*capture_handle, hw_params, &rate, 0); in hfp_capture_device_open()
1611 err = snd_pcm_hw_params_set_period_size_near(*capture_handle, hw_params, &period_size, 0); in hfp_capture_device_open()
1618 err = snd_pcm_hw_params_set_buffer_size_near(*capture_handle, hw_params, &buffer_size); in hfp_capture_device_open()
1626 err = snd_pcm_hw_params(*capture_handle, hw_params); in hfp_capture_device_open()
1662 snd_pcm_t *capture_handle = NULL; in hfp_alsa_playback() local
1692 ret = hfp_capture_device_open(&capture_handle, bt_capture_device, alsa_config); in hfp_alsa_playback()
1707 err = snd_pcm_readi(capture_handle, buffer , read_frame); in hfp_alsa_playback()
1718 err = snd_pcm_recover(capture_handle, err, 0); in hfp_alsa_playback()
1723 hfp_pcm_close(capture_handle); in hfp_alsa_playback()
1745 hfp_pcm_close(capture_handle); in hfp_alsa_playback()
1753 hfp_pcm_close(capture_handle); in hfp_alsa_playback()
1764 snd_pcm_t *capture_handle = NULL; in hfp_bt_playback() local
1786 ret = hfp_capture_device_open(&capture_handle, alsa_capture_device, alsa_config); in hfp_bt_playback()
1803 err = snd_pcm_readi(capture_handle, buffer , READ_FRAME_256); in hfp_bt_playback()
1814 err = snd_pcm_recover(capture_handle, err, 0); in hfp_bt_playback()
1819 hfp_pcm_close(capture_handle); in hfp_bt_playback()
1841 hfp_pcm_close(capture_handle); in hfp_bt_playback()
1849 hfp_pcm_close(capture_handle); in hfp_bt_playback()