Lines Matching refs:snd_timer_status_t

786  * \brief get size of the snd_timer_status_t structure in bytes
787 * \return size of the snd_timer_status_t structure in bytes
791 return sizeof(snd_timer_status_t);
795 * \brief allocate a new snd_timer_status_t structure
799 * Allocates a new snd_timer_status_t structure using the standard
802 int snd_timer_status_malloc(snd_timer_status_t **status)
805 *status = calloc(1, sizeof(snd_timer_status_t));
812 * \brief frees the snd_timer_status_t structure
813 * \param status pointer to the snd_timer_status_t structure to free
815 * Frees the given snd_timer_status_t structure using the standard
818 void snd_timer_status_free(snd_timer_status_t *status)
825 * \brief copy one snd_timer_status_t structure to another
826 * \param dst destination snd_timer_status_t structure
827 * \param src source snd_timer_status_t structure
829 void snd_timer_status_copy(snd_timer_status_t *dst, const snd_timer_status_t *src)
839 * \param status pointer to #snd_timer_status_t structure
842 snd_htimestamp_t snd_timer_status_get_timestamp(snd_timer_status_t * status)
850 * \param status pointer to #snd_timer_status_t structure
853 long snd_timer_status_get_resolution(snd_timer_status_t * status)
861 * \param status pointer to #snd_timer_status_t structure
864 long snd_timer_status_get_lost(snd_timer_status_t * status)
872 * \param status pointer to #snd_timer_status_t structure
875 long snd_timer_status_get_overrun(snd_timer_status_t * status)
883 * \param status pointer to #snd_timer_status_t structure
886 long snd_timer_status_get_queue(snd_timer_status_t * status)
895 * \param status pointer to a #snd_timer_status_t structure to be filled
898 int snd_timer_status(snd_timer_t *timer, snd_timer_status_t * status)