Lines Matching defs:data
82 "-r, --receive=file write received data into a file\n"
84 "-d, --dump print received data as hexadecimal bytes\n"
91 "-t, --timeout=seconds exits when no data has been received\n"
246 char *data = send_data;
257 while (data < (send_data + send_data_length)) {
258 int len = send_data + send_data_length - data;
261 if (data > send_data) {
272 if ((temp = memchr(data, 0xf7, len)) != NULL)
273 len = temp - data + 1;
275 if ((err = snd_rawmidi_write(output, data, len)) < 0)
278 data += len;
565 /* data for -S can be specified as multiple arguments */
567 error("Please specify some data for --send-hex.");
636 error("cannot send data: %s", snd_strerror(err));
641 error("cannot send data: %s", snd_strerror(err));