Lines Matching defs:info
239 * \param info returned pointer
245 int snd_timer_ginfo_malloc(snd_timer_ginfo_t **info)
247 assert(info);
248 *info = calloc(1, sizeof(snd_timer_ginfo_t));
249 if (!*info)
256 * \param info pointer to the snd_timer_ginfo_t structure to free
261 void snd_timer_ginfo_free(snd_timer_ginfo_t *info)
263 assert(info);
264 free(info);
383 * \param info timer information
387 EXPORT_SYMBOL int INTERNAL(snd_timer_query_info)(snd_timer_query_t *timer, snd_timer_ginfo_t *info)
389 int snd_timer_query_info(snd_timer_query_t *timer, snd_timer_ginfo_t *info)
393 assert(info);
394 return timer->ops->info(timer, info);
445 * \param info returned pointer
451 int snd_timer_id_malloc(snd_timer_id_t **info)
453 assert(info);
454 *info = calloc(1, sizeof(snd_timer_id_t));
455 if (!*info)
462 * \param info pointer to the snd_timer_id_t structure to free
467 void snd_timer_id_free(snd_timer_id_t *info)
469 assert(info);
470 free(info);