Home
last modified time | relevance | path

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

/third_party/alsa-lib/include/
Dseq.h95 typedef struct _snd_seq_system_info snd_seq_system_info_t; typedef
101 int snd_seq_system_info_malloc(snd_seq_system_info_t **ptr);
102 void snd_seq_system_info_free(snd_seq_system_info_t *ptr);
103 void snd_seq_system_info_copy(snd_seq_system_info_t *dst, const snd_seq_system_info_t *src);
105 int snd_seq_system_info_get_queues(const snd_seq_system_info_t *info);
106 int snd_seq_system_info_get_clients(const snd_seq_system_info_t *info);
107 int snd_seq_system_info_get_ports(const snd_seq_system_info_t *info);
108 int snd_seq_system_info_get_channels(const snd_seq_system_info_t *info);
109 int snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t *info);
110 int snd_seq_system_info_get_cur_queues(const snd_seq_system_info_t *info);
[all …]
/third_party/alsa-lib/src/seq/
Dseq.c1287 return sizeof(snd_seq_system_info_t); in snd_seq_system_info_sizeof()
1295 int snd_seq_system_info_malloc(snd_seq_system_info_t **ptr) in snd_seq_system_info_malloc()
1298 *ptr = calloc(1, sizeof(snd_seq_system_info_t)); in snd_seq_system_info_malloc()
1308 void snd_seq_system_info_free(snd_seq_system_info_t *obj) in snd_seq_system_info_free()
1318 void snd_seq_system_info_copy(snd_seq_system_info_t *dst, const snd_seq_system_info_t *src) in snd_seq_system_info_copy()
1332 int snd_seq_system_info_get_queues(const snd_seq_system_info_t *info) in snd_seq_system_info_get_queues()
1345 int snd_seq_system_info_get_clients(const snd_seq_system_info_t *info) in snd_seq_system_info_get_clients()
1358 int snd_seq_system_info_get_ports(const snd_seq_system_info_t *info) in snd_seq_system_info_get_ports()
1371 int snd_seq_system_info_get_channels(const snd_seq_system_info_t *info) in snd_seq_system_info_get_channels()
1384 int snd_seq_system_info_get_cur_clients(const snd_seq_system_info_t *info) in snd_seq_system_info_get_cur_clients()
[all …]
Dseq_local.h41 int (*system_info)(snd_seq_t *seq, snd_seq_system_info_t * info);
Dseq_hw.c87 static int snd_seq_hw_system_info(snd_seq_t *seq, snd_seq_system_info_t * info) in snd_seq_hw_system_info()
/third_party/alsa-lib/test/
Dseq.c40 snd_seq_system_info_t *sysinfo; in system_info()