Lines Matching full:info
241 * \param info returned pointer
247 int snd_timer_ginfo_malloc(snd_timer_ginfo_t **info)
249 assert(info);
250 *info = calloc(1, sizeof(snd_timer_ginfo_t));
251 if (!*info)
258 * \param info pointer to the snd_timer_ginfo_t structure to free
263 void snd_timer_ginfo_free(snd_timer_ginfo_t *info)
265 assert(info);
266 free(info);
385 * \param info timer information
389 int INTERNAL(snd_timer_query_info)(snd_timer_query_t *timer, snd_timer_ginfo_t *info)
391 int snd_timer_query_info(snd_timer_query_t *timer, snd_timer_ginfo_t *info)
395 assert(info);
396 return timer->ops->info(timer, info);
447 * \param info returned pointer
453 int snd_timer_id_malloc(snd_timer_id_t **info)
455 assert(info);
456 *info = calloc(1, sizeof(snd_timer_id_t));
457 if (!*info)
464 * \param info pointer to the snd_timer_id_t structure to free
469 void snd_timer_id_free(snd_timer_id_t *info)
471 assert(info);
472 free(info);