HomeSort by relevance Sort by last modified time
    Searched refs:snd_pcm_sframes_t (Results 1 - 25 of 28) sorted by null

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
pcm_ioplug.h 132 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
136 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
191 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
pcm.h 296 typedef long snd_pcm_sframes_t; typedef
440 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp);
443 snd_pcm_sframes_t snd_pcm_avail(snd_pcm_t *pcm);
444 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm);
445 int snd_pcm_avail_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *availp, snd_pcm_sframes_t *delayp);
446 snd_pcm_sframes_t snd_pcm_rewindable(snd_pcm_t *pcm);
447 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
448 snd_pcm_sframes_t snd_pcm_forwardable(snd_pcm_t *pcm);
449 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
    [all...]
pcm_extplug.h 128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext,
pcm_old.h 109 snd_pcm_sframes_t snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t *params, int *dir);
168 snd_pcm_sframes_t snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t *params);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 132 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
136 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
191 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
pcm.h 296 typedef long snd_pcm_sframes_t; typedef
440 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp);
443 snd_pcm_sframes_t snd_pcm_avail(snd_pcm_t *pcm);
444 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm);
445 int snd_pcm_avail_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *availp, snd_pcm_sframes_t *delayp);
446 snd_pcm_sframes_t snd_pcm_rewindable(snd_pcm_t *pcm);
447 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
448 snd_pcm_sframes_t snd_pcm_forwardable(snd_pcm_t *pcm);
449 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames)
    [all...]
pcm_extplug.h 128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext,
pcm_old.h 109 snd_pcm_sframes_t snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t *params, int *dir);
168 snd_pcm_sframes_t snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t *params);
  /external/chromium_org/media/audio/alsa/
alsa_wrapper.h 34 virtual int PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay);
35 virtual snd_pcm_sframes_t PcmWritei(snd_pcm_t* handle,
38 virtual snd_pcm_sframes_t PcmReadi(snd_pcm_t* handle,
49 virtual snd_pcm_sframes_t PcmAvailUpdate(snd_pcm_t* handle);
alsa_wrapper.cc 50 int AlsaWrapper::PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay) {
54 snd_pcm_sframes_t AlsaWrapper::PcmWritei(snd_pcm_t* handle,
60 snd_pcm_sframes_t AlsaWrapper::PcmReadi(snd_pcm_t* handle,
92 snd_pcm_sframes_t AlsaWrapper::PcmAvailUpdate(snd_pcm_t* handle) {
alsa_input.h 65 snd_pcm_sframes_t GetCurrentDelay();
alsa_output.h 132 snd_pcm_sframes_t GetAvailableFrames();
133 snd_pcm_sframes_t GetCurrentDelay();
alsa_input.cc 157 snd_pcm_sframes_t AlsaPcmInputStream::GetCurrentDelay() {
158 snd_pcm_sframes_t delay = -1;
175 snd_pcm_sframes_t frames = wrapper_->PcmAvailUpdate(device_handle_);
alsa_output.cc 412 snd_pcm_sframes_t frames = std::min(
413 static_cast<snd_pcm_sframes_t>(buffer_size / bytes_per_output_frame_),
419 snd_pcm_sframes_t frames_written =
563 snd_pcm_sframes_t AlsaPcmOutputStream::GetCurrentDelay() {
564 snd_pcm_sframes_t delay = -1;
602 snd_pcm_sframes_t AlsaPcmOutputStream::GetAvailableFrames() {
609 snd_pcm_sframes_t available_frames =
alsa_output_unittest.cc 47 MOCK_METHOD2(PcmDelay, int(snd_pcm_t* handle, snd_pcm_sframes_t* delay));
48 MOCK_METHOD3(PcmWritei, snd_pcm_sframes_t(snd_pcm_t* handle,
51 MOCK_METHOD3(PcmReadi, snd_pcm_sframes_t(snd_pcm_t* handle,
63 MOCK_METHOD1(PcmAvailUpdate, snd_pcm_sframes_t(snd_pcm_t* handle));
    [all...]
  /external/qemu/android/config/
check-alsa.c 46 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_avail_update,(snd_pcm_t *pcm)) \
48 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_writei,(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)) \
49 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_readi,(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)) \
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.cc 110 snd_pcm_sframes_t frames;
156 snd_pcm_sframes_t delay;
312 snd_pcm_sframes_t read = stream_.symbol_table()->snd_pcm_readi()(
391 snd_pcm_sframes_t written = stream_.symbol_table()->snd_pcm_writei()(
  /external/qemu/audio/
alsaaudio.c 78 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_avail_update,(snd_pcm_t *pcm)) \
80 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_writei,(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)) \
81 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_readi,(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)) \
760 static snd_pcm_sframes_t alsa_get_avail (snd_pcm_t *handle)
762 snd_pcm_sframes_t avail;
792 snd_pcm_sframes_t written;
849 snd_pcm_sframes_t avail;
1062 snd_pcm_sframes_t avail;
1117 snd_pcm_sframes_t nread;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_device_alsa_linux.h 240 snd_pcm_sframes_t _recordingDelay;
241 snd_pcm_sframes_t _playoutDelay;
  /bionic/libc/kernel/uapi/sound/
asound.h 110 typedef signed long snd_pcm_sframes_t; typedef
397 snd_pcm_sframes_t delay;
442 snd_pcm_sframes_t result;
449 snd_pcm_sframes_t result;
525 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]
  /external/kernel-headers/original/uapi/sound/
asound.h 143 typedef signed long snd_pcm_sframes_t; typedef
408 snd_pcm_sframes_t delay; /* current delay in frames */
449 snd_pcm_sframes_t result;
455 snd_pcm_sframes_t result;
524 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/sound/
asound.h 110 typedef signed long snd_pcm_sframes_t; typedef
397 snd_pcm_sframes_t delay;
442 snd_pcm_sframes_t result;
449 snd_pcm_sframes_t result;
525 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/sound/
asound.h 143 typedef signed long snd_pcm_sframes_t; typedef
408 snd_pcm_sframes_t delay; /* current delay in frames */
449 snd_pcm_sframes_t result;
455 snd_pcm_sframes_t result;
524 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sound/
asound.h 128 typedef signed long snd_pcm_sframes_t; typedef
383 snd_pcm_sframes_t delay; /* current delay in frames */
421 snd_pcm_sframes_t result;
427 snd_pcm_sframes_t result;
447 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
asound.h 128 typedef signed long snd_pcm_sframes_t; typedef
383 snd_pcm_sframes_t delay; /* current delay in frames */
421 snd_pcm_sframes_t result;
427 snd_pcm_sframes_t result;
447 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]

Completed in 243 milliseconds

1 2