• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/include/

Lines Matching refs:snd_seq_client_info_t

125 typedef struct _snd_seq_client_info snd_seq_client_info_t;
134 /** allocate a #snd_seq_client_info_t container on stack */
137 int snd_seq_client_info_malloc(snd_seq_client_info_t **ptr);
138 void snd_seq_client_info_free(snd_seq_client_info_t *ptr);
139 void snd_seq_client_info_copy(snd_seq_client_info_t *dst, const snd_seq_client_info_t *src);
141 int snd_seq_client_info_get_client(const snd_seq_client_info_t *info);
142 snd_seq_client_type_t snd_seq_client_info_get_type(const snd_seq_client_info_t *info);
143 const char *snd_seq_client_info_get_name(snd_seq_client_info_t *info);
144 int snd_seq_client_info_get_broadcast_filter(const snd_seq_client_info_t *info);
145 int snd_seq_client_info_get_error_bounce(const snd_seq_client_info_t *info);
146 const unsigned char *snd_seq_client_info_get_event_filter(const snd_seq_client_info_t *info);
147 int snd_seq_client_info_get_num_ports(const snd_seq_client_info_t *info);
148 int snd_seq_client_info_get_event_lost(const snd_seq_client_info_t *info);
150 void snd_seq_client_info_set_client(snd_seq_client_info_t *info, int client);
151 void snd_seq_client_info_set_name(snd_seq_client_info_t *info, const char *name);
152 void snd_seq_client_info_set_broadcast_filter(snd_seq_client_info_t *info, int val);
153 void snd_seq_client_info_set_error_bounce(snd_seq_client_info_t *info, int val);
154 void snd_seq_client_info_set_event_filter(snd_seq_client_info_t *info, unsigned char *filter);
156 void snd_seq_client_info_event_filter_clear(snd_seq_client_info_t *info);
157 void snd_seq_client_info_event_filter_add(snd_seq_client_info_t *info, int event_type);
158 void snd_seq_client_info_event_filter_del(snd_seq_client_info_t *info, int event_type);
159 int snd_seq_client_info_event_filter_check(snd_seq_client_info_t *info, int event_type);
161 int snd_seq_get_client_info(snd_seq_t *handle, snd_seq_client_info_t *info);
162 int snd_seq_get_any_client_info(snd_seq_t *handle, int client, snd_seq_client_info_t *info);
163 int snd_seq_set_client_info(snd_seq_t *handle, snd_seq_client_info_t *info);
164 int snd_seq_query_next_client(snd_seq_t *handle, snd_seq_client_info_t *info);