Lines Matching refs:appl_ptr
904 status->appl_ptr = runtime->control->appl_ptr; in snd_pcm_status()
1650 runtime->control->appl_ptr = runtime->status->hw_ptr; in snd_pcm_post_reset()
1696 runtime->control->appl_ptr = runtime->status->hw_ptr; in snd_pcm_post_prepare()
2641 snd_pcm_sframes_t appl_ptr; in forward_appl_ptr() local
2648 appl_ptr = runtime->control->appl_ptr + frames; in forward_appl_ptr()
2649 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary) in forward_appl_ptr()
2650 appl_ptr -= runtime->boundary; in forward_appl_ptr()
2651 ret = pcm_lib_apply_appl_ptr(substream, appl_ptr); in forward_appl_ptr()
2661 snd_pcm_sframes_t appl_ptr; in rewind_appl_ptr() local
2668 appl_ptr = runtime->control->appl_ptr - frames; in rewind_appl_ptr()
2669 if (appl_ptr < 0) in rewind_appl_ptr()
2670 appl_ptr += runtime->boundary; in rewind_appl_ptr()
2671 ret = pcm_lib_apply_appl_ptr(substream, appl_ptr); in rewind_appl_ptr()
2764 sync_ptr.c.control.appl_ptr); in snd_pcm_sync_ptr()
2770 sync_ptr.c.control.appl_ptr = control->appl_ptr; in snd_pcm_sync_ptr()