Symbol: sysex
include/sound/emux_synth.h
52
void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed,
include/sound/seq_midi_emul.h
76
void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed,
sound/core/seq/seq_midi_emul.c
199
sysex(ops, drv, sysexbuf, len, chanset);
sound/core/seq/seq_midi_emul.c
46
static void sysex(const struct snd_midi_op *ops, void *private,
sound/core/seq/seq_midi_emul.c
47
unsigned char *sysex,
sound/core/seq/seq_midi_emul.c
584
if (ops->sysex)
sound/core/seq/seq_midi_emul.c
585
ops->sysex(private, buf - 1, len + 1, parsed, chset);
sound/drivers/opl3/opl3_seq.c
137
.sysex = snd_opl3_sysex,
sound/drivers/opl4/opl4_seq.c
102
.sysex = snd_opl4_sysex,
sound/isa/sb/emu8000_callback.c
24
static void sysex(struct snd_emux *emu, char *buf, int len, int parsed,
sound/isa/sb/emu8000_callback.c
65
.sysex = sysex,
sound/synth/emux/emux_nrpn.c
381
if (emu->ops.sysex)
sound/synth/emux/emux_nrpn.c
382
emu->ops.sysex(emu, buf, len, parsed, chset);
sound/synth/emux/emux_seq.c
29
.sysex = snd_emux_sysex,
sound/usb/line6/pod.c
214
char *sysex;
sound/usb/line6/pod.c
217
sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size);
sound/usb/line6/pod.c
218
if (!sysex)
sound/usb/line6/pod.c
220
sysex[SYSEX_DATA_OFS] = code;
sound/usb/line6/pod.c
221
sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f;
sound/usb/line6/pod.c
222
sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f;
sound/usb/line6/pod.c
223
sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f;
sound/usb/line6/pod.c
224
sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f;
sound/usb/line6/pod.c
225
line6_send_sysex_message(&pod->line6, sysex, size);
sound/usb/line6/pod.c
226
kfree(sysex);