Lines Matching refs:appl_ptr
950 status->appl_ptr = runtime->control->appl_ptr; in snd_pcm_status()
1637 runtime->control->appl_ptr = runtime->status->hw_ptr; in snd_pcm_post_reset()
1683 runtime->control->appl_ptr = runtime->status->hw_ptr; in snd_pcm_post_prepare()
2603 snd_pcm_sframes_t appl_ptr; in forward_appl_ptr() local
2610 appl_ptr = runtime->control->appl_ptr + frames; in forward_appl_ptr()
2611 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary) in forward_appl_ptr()
2612 appl_ptr -= runtime->boundary; in forward_appl_ptr()
2613 ret = pcm_lib_apply_appl_ptr(substream, appl_ptr); in forward_appl_ptr()
2623 snd_pcm_sframes_t appl_ptr; in rewind_appl_ptr() local
2630 appl_ptr = runtime->control->appl_ptr - frames; in rewind_appl_ptr()
2631 if (appl_ptr < 0) in rewind_appl_ptr()
2632 appl_ptr += runtime->boundary; in rewind_appl_ptr()
2633 ret = pcm_lib_apply_appl_ptr(substream, appl_ptr); in rewind_appl_ptr()
2726 sync_ptr.c.control.appl_ptr); in snd_pcm_sync_ptr()
2732 sync_ptr.c.control.appl_ptr = control->appl_ptr; in snd_pcm_sync_ptr()