Lines Matching refs:port
60 * \brief create a port - simple version
62 * \param name the name of the port
65 * \return the created port number or negative error code
67 * Creates a port with the given capability and type bits.
90 return pinfo.addr.port;
94 * \brief delete the port
96 * \param port port id
101 int snd_seq_delete_simple_port(snd_seq_t *seq, int port)
103 return snd_seq_delete_port(seq, port);
109 * \param myport the port id as receiver
111 * \param src_port sender port id
114 * Connect from the given sender client:port to the given destination port in the
125 subs.sender.port = src_port;
128 subs.dest.port = myport;
136 * \param myport the port id as sender
138 * \param dest_port destination port id
141 * Connect from the given receiver port in the current client
142 * to the given destination client:port.
153 subs.sender.port = myport;
155 subs.dest.port = dest_port;
163 * \param myport the port id as receiver
165 * \param src_port sender port id
168 * Remove connection from the given sender client:port
169 * to the given destination port in the current client.
179 subs.sender.port = src_port;
182 subs.dest.port = myport;
190 * \param myport the port id as sender
192 * \param dest_port destination port id
195 * Remove connection from the given sender client:port
196 * to the given destination port in the current client.
207 subs.sender.port = myport;
209 subs.dest.port = dest_port;
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.
430 long client, port = 0;
445 if ((port = atoi(s + 1)) < 0)
450 if ((port = atoi(p + 1)) < 0)
462 addr->port = port;