/third_party/alsa-lib/src/seq/ |
H A D | seq_local.h | 39 int (*close)(snd_seq_t *seq); 40 int (*nonblock)(snd_seq_t *seq, int nonblock); 41 int (*system_info)(snd_seq_t *seq, snd_seq_system_info_t * info); 42 int (*get_client_info)(snd_seq_t *seq, snd_seq_client_info_t * info); 43 int (*set_client_info)(snd_seq_t *seq, snd_seq_client_info_t * info); 44 int (*get_ump_info)(snd_seq_t *seq, int client, int type, void *info); 45 int (*set_ump_info)(snd_seq_t *seq, int type, const void *info); 46 int (*create_port)(snd_seq_t *seq, snd_seq_port_info_t * port); 47 int (*delete_port)(snd_seq_t *seq, snd_seq_port_info_t * port); 48 int (*get_port_info)(snd_seq_t *se [all...] |
H A D | seq_hw.c | 42 static int snd_seq_hw_close(snd_seq_t *seq) in snd_seq_hw_close() 55 static int snd_seq_hw_nonblock(snd_seq_t *seq, int nonblock) in snd_seq_hw_nonblock() 75 static int snd_seq_hw_client_id(snd_seq_t *seq) in snd_seq_hw_client_id() 86 static int snd_seq_hw_system_info(snd_seq_t *seq, snd_seq_system_info_t * info) in snd_seq_hw_system_info() 96 static void update_midi_version(snd_seq_t *seq, snd_seq_client_info_t *info) in update_midi_version() 110 static int snd_seq_hw_get_client_info(snd_seq_t *seq, snd_seq_client_info_t * info) in snd_seq_hw_get_client_info() 124 static int snd_seq_hw_set_client_info(snd_seq_t *seq, snd_seq_client_info_t * info) in snd_seq_hw_set_client_info() 136 static int snd_seq_hw_get_ump_info(snd_seq_t *seq, int client, int type, void *info) in snd_seq_hw_get_ump_info() 158 static int snd_seq_hw_set_ump_info(snd_seq_t *seq, int type, const void *info) in snd_seq_hw_set_ump_info() 181 static int snd_seq_hw_create_port(snd_seq_t *se [all...] |
H A D | seqmid.c | 46 int snd_seq_control_queue(snd_seq_t *seq, int q, int type, int value, snd_seq_event_t *ev) in snd_seq_control_queue() 71 int snd_seq_create_simple_port(snd_seq_t *seq, const char *name, in snd_seq_create_simple_port() 101 int snd_seq_delete_simple_port(snd_seq_t *seq, int port) in snd_seq_delete_simple_port() 119 int snd_seq_connect_from(snd_seq_t *seq, int myport, int src_client, int src_port) in snd_seq_connect_from() 146 int snd_seq_connect_to(snd_seq_t *seq, int myport, int dest_client, int dest_port) in snd_seq_connect_to() 173 int snd_seq_disconnect_from(snd_seq_t *seq, int myport, int src_client, int src_port) in snd_seq_disconnect_from() 200 int snd_seq_disconnect_to(snd_seq_t *seq, int myport, int dest_client, int dest_port) in snd_seq_disconnect_to() 226 int snd_seq_set_client_name(snd_seq_t *seq, const char *name) in snd_seq_set_client_name() 245 int snd_seq_set_client_event_filter(snd_seq_t *seq, int event_type) in snd_seq_set_client_event_filter() 264 int snd_seq_set_client_midi_version(snd_seq_t *se [all...] |
H A D | seq.c | 59 snd_seq_t *open_client() 61 snd_seq_t *handle; 89 int my_new_port(snd_seq_t *handle) 403 int my_queue(snd_seq_t *handle) 455 void set_tempo(snd_seq_t *handle, int queue) 469 int change_tempo(snd_seq_t *handle, int q, unsigned int tempo) 615 void capture_keyboard(snd_seq_t *seq) 638 void subscribe_output(snd_seq_t *seq) 654 void subscribe_output(snd_seq_t *seq) 672 void coupling(snd_seq_t *se [all...] |
/third_party/alsa-lib/include/ |
H A D | seq.h | 47 typedef struct _snd_seq snd_seq_t; typedef 78 int snd_seq_open(snd_seq_t **handle, const char *name, int streams, int mode); 79 int snd_seq_open_lconf(snd_seq_t **handle, const char *name, int streams, int mode, snd_config_t *lconf); 80 const char *snd_seq_name(snd_seq_t *seq); 81 snd_seq_type_t snd_seq_type(snd_seq_t *seq); 82 int snd_seq_close(snd_seq_t *handle); 83 int snd_seq_poll_descriptors_count(snd_seq_t *handle, short events); 84 int snd_seq_poll_descriptors(snd_seq_t *handle, struct pollfd *pfds, unsigned int space, short events); 85 int snd_seq_poll_descriptors_revents(snd_seq_t *seq, struct pollfd *pfds, unsigned int nfds, unsigned short *revents); 86 int snd_seq_nonblock(snd_seq_t *handl [all...] |
H A D | seqmid.h | 326 int snd_seq_control_queue(snd_seq_t *seq, int q, int type, int value, snd_seq_event_t *ev); 366 int snd_seq_create_simple_port(snd_seq_t *seq, const char *name, 369 int snd_seq_delete_simple_port(snd_seq_t *seq, int port); 374 int snd_seq_connect_from(snd_seq_t *seq, int my_port, int src_client, int src_port); 375 int snd_seq_connect_to(snd_seq_t *seq, int my_port, int dest_client, int dest_port); 376 int snd_seq_disconnect_from(snd_seq_t *seq, int my_port, int src_client, int src_port); 377 int snd_seq_disconnect_to(snd_seq_t *seq, int my_port, int dest_client, int dest_port); 382 int snd_seq_set_client_name(snd_seq_t *seq, const char *name); 383 int snd_seq_set_client_event_filter(snd_seq_t *seq, int event_type); 384 int snd_seq_set_client_midi_version(snd_seq_t *se [all...] |
/third_party/alsa-utils/seq/aconnect/ |
H A D | aconnect.c | 122 static void list_each_subs(snd_seq_t *seq, snd_seq_query_subscribe_t *subs, int type, const char *msg) in list_each_subs() 150 static void list_subscribers(snd_seq_t *seq, const snd_seq_addr_t *addr) in list_subscribers() 162 typedef void (*action_func_t)(snd_seq_t *seq, snd_seq_client_info_t *cinfo, snd_seq_port_info_t *pinfo, int count); 164 static void do_search_port(snd_seq_t *seq, int perm, action_func_t do_action) in do_search_port() 196 static void print_port(snd_seq_t *seq ATTRIBUTE_UNUSED, in print_port() 240 static void print_port_and_subs(snd_seq_t *seq, snd_seq_client_info_t *cinfo, in print_port_and_subs() 251 static void remove_connection(snd_seq_t *seq, in remove_connection() 287 static void remove_all_connections(snd_seq_t *seq) in remove_all_connections() 325 snd_seq_t *seq; in main()
|
/third_party/alsa-lib/test/ |
H A D | seq.c | 27 void set_name(snd_seq_t *handle) in set_name() 39 void system_info(snd_seq_t *handle) in system_info() 54 void show_system_info(snd_seq_t *handle ATTRIBUTE_UNUSED) in show_system_info() 62 void show_queue_status(snd_seq_t *handle, int queue) in show_queue_status() 86 void show_port_info(snd_seq_t *handle, int client, int port) in show_port_info() 114 void show_client_info(snd_seq_t *handle, int client) in show_client_info() 157 snd_seq_t *handle; in main()
|
H A D | seq-sender.c | 68 void event_sender_start_timer(snd_seq_t *handle, in event_sender_start_timer() 100 void event_sender_filter(snd_seq_t *handle) in event_sender_filter() 110 void send_event(snd_seq_t *handle, int queue, int client, int port, in send_event() 143 void event_sender(snd_seq_t *handle, int argc, char *argv[]) in event_sender()
|
H A D | seq-decoder.c | 248 void event_decoder_start_timer(snd_seq_t *handle, int queue, in event_decoder_start_timer() 260 void event_decoder(snd_seq_t *handle, int argc, char *argv[]) in event_decoder()
|
H A D | queue_timer.c | 23 snd_seq_t *handle; in main()
|
H A D | playmidi1.c | 69 static snd_seq_t *seq_handle = NULL;
|
/third_party/alsa-lib/src/rawmidi/ |
H A D | rawmidi_virt.c | 40 snd_seq_t *handle; 55 int _snd_seq_open_lconf(snd_seq_t **seqp, const char *name, 312 const char *name, snd_seq_t *seq_handle, int port, in snd_rawmidi_virtual_open() 408 snd_seq_t *seq_handle; in _snd_rawmidi_virtual_open()
|
H A D | rawmidi_local.h | 63 const char *name, snd_seq_t *seq_handle, int port,
|
/third_party/alsa-utils/seq/aseqnet/ |
H A D | aseqnet.c | 65 static snd_seq_t *handle;
|
/third_party/alsa-utils/seq/aseqdump/ |
H A D | aseqdump.c | 40 static snd_seq_t *seq;
|
/third_party/alsa-utils/seq/aplaymidi/ |
H A D | arecordmidi.c | 64 static snd_seq_t *seq;
|
H A D | aplaymidi.c | 69 static snd_seq_t *seq;
|
/third_party/alsa-lib/aserver/ |
H A D | aserver.c | 196 snd_seq_t *handle;
|