Lines Matching refs:hwo
809 HWVoiceOut *hwo = NULL; in audio_is_timer_needed() local
811 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) { in audio_is_timer_needed()
812 if (!hwo->poll_mode) { in audio_is_timer_needed()
1594 HWVoiceOut *hwo = NULL; in audio_vm_change_state_handler() local
1598 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) { in audio_vm_change_state_handler()
1599 if (hwo->pcm_ops->enable_out) { in audio_vm_change_state_handler()
1600 hwo->pcm_ops->enable_out(hwo, running); in audio_vm_change_state_handler()
1614 HWVoiceOut *hwo, *hwon; in free_audio_state() local
1617 QLIST_FOREACH_SAFE(hwo, &s->hw_head_out, entries, hwon) { in free_audio_state()
1620 if (hwo->enabled && hwo->pcm_ops->enable_out) { in free_audio_state()
1621 hwo->pcm_ops->enable_out(hwo, false); in free_audio_state()
1623 hwo->pcm_ops->fini_out (hwo); in free_audio_state()
1625 for (sc = hwo->cap_head.lh_first; sc; sc = sc->entries.le_next) { in free_audio_state()
1633 QLIST_REMOVE(hwo, entries); in free_audio_state()