Lines Matching refs:frames

1077 int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames);
1087 snd_pcm_uframes_t frames, bool in_kernel);
1091 const void __user *buf, snd_pcm_uframes_t frames) in snd_pcm_lib_write() argument
1093 return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false); in snd_pcm_lib_write()
1098 void __user *buf, snd_pcm_uframes_t frames) in snd_pcm_lib_read() argument
1100 return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false); in snd_pcm_lib_read()
1105 void __user **bufs, snd_pcm_uframes_t frames) in snd_pcm_lib_writev() argument
1107 return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false); in snd_pcm_lib_writev()
1112 void __user **bufs, snd_pcm_uframes_t frames) in snd_pcm_lib_readv() argument
1114 return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false); in snd_pcm_lib_readv()
1119 const void *buf, snd_pcm_uframes_t frames) in snd_pcm_kernel_write() argument
1121 return __snd_pcm_lib_xfer(substream, (void *)buf, true, frames, true); in snd_pcm_kernel_write()
1126 void *buf, snd_pcm_uframes_t frames) in snd_pcm_kernel_read() argument
1128 return __snd_pcm_lib_xfer(substream, buf, true, frames, true); in snd_pcm_kernel_read()
1133 void **bufs, snd_pcm_uframes_t frames) in snd_pcm_kernel_writev() argument
1135 return __snd_pcm_lib_xfer(substream, bufs, false, frames, true); in snd_pcm_kernel_writev()
1140 void **bufs, snd_pcm_uframes_t frames) in snd_pcm_kernel_readv() argument
1142 return __snd_pcm_lib_xfer(substream, bufs, false, frames, true); in snd_pcm_kernel_readv()