Lines Matching defs:client
34 fprintf(stderr, "Set client info error: %s\n", snd_strerror(err));
86 void show_port_info(snd_seq_t *handle, int client, int port)
95 if ((err = snd_seq_get_any_port_info(handle, client, idx, info))<0) {
98 fprintf(stderr, "Port %i/%i info error: %s\n", client, idx, snd_strerror(err));
114 void show_client_info(snd_seq_t *handle, int client)
120 min = client < 0 ? 0 : client;
121 max = client < 0 ? max_clients : client + 1;
148 printf(" client [#] show all clients or specified client\n");
149 printf(" port <client> [#] show all ports or specified port for specified client\n");
151 printf(" sender <client.port> [<client.port>] ... event sender\n");
216 } else if (!strcmp(argv[optind], "client")) {