sysex              52 include/sound/emux_synth.h 	void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed,
sysex              76 include/sound/seq_midi_emul.h 	void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed,
sysex              58 sound/core/seq/oss/seq_oss_device.h 	struct seq_oss_synth_sysex *sysex;
sysex             321 sound/core/seq/oss/seq_oss_synth.c 		kfree(info->sysex);
sysex             322 sound/core/seq/oss/seq_oss_synth.c 		info->sysex = NULL;
sysex             398 sound/core/seq/oss/seq_oss_synth.c 	if (info->sysex)
sysex             399 sound/core/seq/oss/seq_oss_synth.c 		info->sysex->len = 0; /* reset sysex */
sysex             411 sound/core/seq/oss/seq_oss_synth.c 			kfree(info->sysex);
sysex             412 sound/core/seq/oss/seq_oss_synth.c 			info->sysex = NULL;
sysex             492 sound/core/seq/oss/seq_oss_synth.c 	struct seq_oss_synth_sysex *sysex;
sysex             499 sound/core/seq/oss/seq_oss_synth.c 	sysex = info->sysex;
sysex             500 sound/core/seq/oss/seq_oss_synth.c 	if (sysex == NULL) {
sysex             501 sound/core/seq/oss/seq_oss_synth.c 		sysex = kzalloc(sizeof(*sysex), GFP_KERNEL);
sysex             502 sound/core/seq/oss/seq_oss_synth.c 		if (sysex == NULL)
sysex             504 sound/core/seq/oss/seq_oss_synth.c 		info->sysex = sysex;
sysex             508 sound/core/seq/oss/seq_oss_synth.c 	dest = sysex->buf + sysex->len;
sysex             516 sound/core/seq/oss/seq_oss_synth.c 		sysex->len++;
sysex             517 sound/core/seq/oss/seq_oss_synth.c 		if (sysex->len >= MAX_SYSEX_BUFLEN) {
sysex             518 sound/core/seq/oss/seq_oss_synth.c 			sysex->len = 0;
sysex             519 sound/core/seq/oss/seq_oss_synth.c 			sysex->skip = 1;
sysex             524 sound/core/seq/oss/seq_oss_synth.c 	if (sysex->len && send) {
sysex             525 sound/core/seq/oss/seq_oss_synth.c 		if (sysex->skip) {
sysex             526 sound/core/seq/oss/seq_oss_synth.c 			sysex->skip = 0;
sysex             527 sound/core/seq/oss/seq_oss_synth.c 			sysex->len = 0;
sysex             534 sound/core/seq/oss/seq_oss_synth.c 		ev->data.ext.len = sysex->len;
sysex             535 sound/core/seq/oss/seq_oss_synth.c 		ev->data.ext.ptr = sysex->buf;
sysex             536 sound/core/seq/oss/seq_oss_synth.c 		sysex->len = 0;
sysex              44 sound/core/seq/seq_midi_emul.c static void sysex(struct snd_midi_op *ops, void *private, unsigned char *sysex,
sysex             196 sound/core/seq/seq_midi_emul.c 				sysex(ops, drv, sysexbuf, len, chanset);
sysex             579 sound/core/seq/seq_midi_emul.c 	if (ops->sysex)
sysex             580 sound/core/seq/seq_midi_emul.c 		ops->sysex(private, buf - 1, len + 1, parsed, chset);
sysex             138 sound/drivers/opl3/opl3_seq.c 	.sysex =		snd_opl3_sysex,
sysex             108 sound/drivers/opl4/opl4_seq.c 	.sysex =		snd_opl4_sysex,
sysex              24 sound/isa/sb/emu8000_callback.c static void sysex(struct snd_emux *emu, char *buf, int len, int parsed,
sysex              65 sound/isa/sb/emu8000_callback.c 	.sysex =	sysex,
sysex             378 sound/synth/emux/emux_nrpn.c 		if (emu->ops.sysex)
sysex             379 sound/synth/emux/emux_nrpn.c 			emu->ops.sysex(emu, buf, len, parsed, chset);
sysex              29 sound/synth/emux/emux_seq.c 	.sysex = snd_emux_sysex,
sysex             213 sound/usb/line6/pod.c 	char *sysex;
sysex             216 sound/usb/line6/pod.c 	sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size);
sysex             217 sound/usb/line6/pod.c 	if (!sysex)
sysex             219 sound/usb/line6/pod.c 	sysex[SYSEX_DATA_OFS] = code;
sysex             220 sound/usb/line6/pod.c 	sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f;
sysex             221 sound/usb/line6/pod.c 	sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f;
sysex             222 sound/usb/line6/pod.c 	sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f;
sysex             223 sound/usb/line6/pod.c 	sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f;
sysex             224 sound/usb/line6/pod.c 	line6_send_sysex_message(&pod->line6, sysex, size);
sysex             225 sound/usb/line6/pod.c 	kfree(sysex);