Home
last modified time | relevance | path

Searched refs:snd_timer_info_t (Results 1 – 5 of 5) sorted by relevance

/third_party/alsa-lib/include/
Dtimer.h55 typedef struct _snd_timer_info snd_timer_info_t; typedef
159 int snd_timer_info(snd_timer_t *handle, snd_timer_info_t *timer);
206 int snd_timer_info_malloc(snd_timer_info_t **ptr);
207 void snd_timer_info_free(snd_timer_info_t *obj);
208 void snd_timer_info_copy(snd_timer_info_t *dst, const snd_timer_info_t *src);
210 int snd_timer_info_is_slave(snd_timer_info_t * info);
211 int snd_timer_info_get_card(snd_timer_info_t * info);
212 const char *snd_timer_info_get_id(snd_timer_info_t * info);
213 const char *snd_timer_info_get_name(snd_timer_info_t * info);
214 long snd_timer_info_get_resolution(snd_timer_info_t * info);
[all …]
/third_party/alsa-lib/src/timer/
Dtimer.c445 return sizeof(snd_timer_info_t); in snd_timer_info_sizeof()
456 int snd_timer_info_malloc(snd_timer_info_t **info) in snd_timer_info_malloc()
459 *info = calloc(1, sizeof(snd_timer_info_t)); in snd_timer_info_malloc()
472 void snd_timer_info_free(snd_timer_info_t *info) in snd_timer_info_free()
483 void snd_timer_info_copy(snd_timer_info_t *dst, const snd_timer_info_t *src) in snd_timer_info_copy()
494 int snd_timer_info_is_slave(snd_timer_info_t * info) in snd_timer_info_is_slave()
505 int snd_timer_info_get_card(snd_timer_info_t * info) in snd_timer_info_get_card()
516 const char *snd_timer_info_get_id(snd_timer_info_t * info) in snd_timer_info_get_id()
527 const char *snd_timer_info_get_name(snd_timer_info_t * info) in snd_timer_info_get_name()
539 long snd_timer_info_get_resolution(snd_timer_info_t * info) in snd_timer_info_get_resolution()
[all …]
Dtimer_local.h31 int (*info)(snd_timer_t *timer, snd_timer_info_t *info);
Dtimer_hw.c101 static int snd_timer_hw_info(snd_timer_t *handle, snd_timer_info_t * info) in snd_timer_hw_info()
/third_party/alsa-lib/test/
Dtimer.c83 snd_timer_info_t *info; in main()