__snd_pcm_lib_xfer
snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream,
return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false);
return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false);
return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false);
return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false);
return __snd_pcm_lib_xfer(substream, (void *)buf, true, frames, true);
return __snd_pcm_lib_xfer(substream, buf, true, frames, true);
return __snd_pcm_lib_xfer(substream, bufs, false, frames, true);
return __snd_pcm_lib_xfer(substream, bufs, false, frames, true);
ret = __snd_pcm_lib_xfer(substream, (void *)ptr, true,
ret = __snd_pcm_lib_xfer(substream, (void *)ptr, true,
EXPORT_SYMBOL(__snd_pcm_lib_xfer);