Lines Matching defs:client

110  * \param src_client sender client id
114 * Connect from the given sender client:port to the given destination port in the
115 * current client.
124 subs.sender.client = src_client;
126 /*subs.dest.client = seq->client;*/
127 subs.dest.client = snd_seq_client_id(seq);
137 * \param dest_client destination client id
141 * Connect from the given receiver port in the current client
142 * to the given destination client:port.
151 /*subs.sender.client = seq->client;*/
152 subs.sender.client = snd_seq_client_id(seq);
154 subs.dest.client = dest_client;
164 * \param src_client sender client id
168 * Remove connection from the given sender client:port
169 * to the given destination port in the current client.
178 subs.sender.client = src_client;
180 /*subs.dest.client = seq->client;*/
181 subs.dest.client = snd_seq_client_id(seq);
191 * \param dest_client destination client id
195 * Remove connection from the given sender client:port
196 * to the given destination port in the current client.
205 /*subs.sender.client = seq->client;*/
206 subs.sender.client = snd_seq_client_id(seq);
208 subs.dest.client = dest_client;
215 * set client information
219 * \brief set client name
238 * \brief add client event filter
257 * \brief set client MIDI protocol version
276 * \brief enable/disable client's automatic conversion of UMP/legacy events
295 * \brief change the output pool size of the given client
314 * \brief change the output room size of the given client
333 * \brief change the input pool size of the given client
352 * \brief reset client output pool
364 * \brief reset client input pool
380 * This function waits until all events of this client are processed.
416 * This function parses the sequencer client and port numbers from the given string.
417 * The client and port tokens are separated by either colon or period, e.g. 128:1.
418 * When \a seq is not NULL, the function accepts also a client name not only
420 * Actually \a arg need to be only a prefix of the wanted client.
421 * That is, if a client named "Foobar XXL Master 2012" with number 128 is available,
422 * then parsing "Foobar" will return the address 128:0 if no other client is
430 long client, port = 0;
452 len = (int)(p - arg); /* length of client name */
463 if (safe_strtol(buf, &client) == 0) {
464 addr->client = client;
473 client = -1;
474 cinfo.client = -1;
479 addr->client = cinfo.client;
482 if (client < 0)
483 client = cinfo.client;
486 if (client >= 0) {
488 addr->client = client;