Lines Matching defs:status
400 \section pcm_status Obtaining stream status
402 The stream status is stored in #snd_pcm_status_t structure.
411 parameters - avail_max and overrange are reset to zero after the status
1047 * \brief Obtain status (runtime) information for PCM handle
1049 * \param status Status container
1054 int snd_pcm_status(snd_pcm_t *pcm, snd_pcm_status_t *status)
1058 assert(pcm && status);
1060 if (pcm->fast_ops->status)
1061 err = pcm->fast_ops->status(pcm->fast_op_arg, status);
2403 * \brief Dump status
2404 * \param status Status container
2408 int snd_pcm_status_dump(snd_pcm_status_t *status, snd_output_t *out)
2410 assert(status);
2411 snd_output_printf(out, " state : %s\n", snd_pcm_state_name((snd_pcm_state_t) status->state));
2413 status->trigger_tstamp.tv_sec,
2414 status->trigger_tstamp.tv_nsec / 1000);
2416 status->tstamp.tv_sec, status->tstamp.tv_nsec / 1000);
2417 snd_output_printf(out, " delay : %ld\n", (long)status->delay);
2418 snd_output_printf(out, " avail : %ld\n", (long)status->avail);
2419 snd_output_printf(out, " avail_max : %ld\n", (long)status->avail_max);
2896 * (-EPIPE for the xrun and -ESTRPIPE for the suspended status,
6999 * \brief Get state from a PCM status container (see #snd_pcm_state)
7010 * \brief Get trigger timestamp from a PCM status container
7026 * \brief Get trigger hi-res timestamp from a PCM status container
7046 * \brief Get "now" timestamp from a PCM status container
7058 * \brief Get "now" hi-res timestamp from a PCM status container
7074 * \brief Get "now" hi-res audio timestamp from a PCM status container
7085 * \brief Get "now" hi-res driver timestamp from a PCM status container. Defines when the status
7097 * \brief Get audio_tstamp_report from a PCM status container
7111 * \brief set audio_tstamp_config from a PCM status container
7123 * \brief Get delay from a PCM status container (see #snd_pcm_delay)
7139 * \brief Get number of frames available from a PCM status container (see #snd_pcm_avail_update)
7149 * \brief Get maximum number of frames available from a PCM status container after last #snd_pcm_status call