Home
last modified time | relevance | path

Searched refs:sysex (Results 1 – 11 of 11) sorted by relevance

/openbmc/linux/sound/core/seq/oss/
H A Dseq_oss_synth.c322 kfree(info->sysex); in snd_seq_oss_synth_cleanup()
323 info->sysex = NULL; in snd_seq_oss_synth_cleanup()
399 if (info->sysex) in snd_seq_oss_synth_reset()
400 info->sysex->len = 0; /* reset sysex */ in snd_seq_oss_synth_reset()
412 kfree(info->sysex); in snd_seq_oss_synth_reset()
413 info->sysex = NULL; in snd_seq_oss_synth_reset()
494 struct seq_oss_synth_sysex *sysex; in snd_seq_oss_synth_sysex() local
502 sysex = info->sysex; in snd_seq_oss_synth_sysex()
503 if (sysex == NULL) { in snd_seq_oss_synth_sysex()
504 sysex = kzalloc(sizeof(*sysex), GFP_KERNEL); in snd_seq_oss_synth_sysex()
[all …]
H A Dseq_oss_device.h58 struct seq_oss_synth_sysex *sysex; member
/openbmc/linux/sound/usb/line6/
H A Dpod.c214 char *sysex; in pod_set_system_param_int() local
217 sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size); in pod_set_system_param_int()
218 if (!sysex) in pod_set_system_param_int()
220 sysex[SYSEX_DATA_OFS] = code; in pod_set_system_param_int()
221 sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f; in pod_set_system_param_int()
222 sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f; in pod_set_system_param_int()
223 sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f; in pod_set_system_param_int()
224 sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f; in pod_set_system_param_int()
225 line6_send_sysex_message(&pod->line6, sysex, size); in pod_set_system_param_int()
226 kfree(sysex); in pod_set_system_param_int()
/openbmc/linux/sound/core/seq/
H A Dseq_midi_emul.c46 static void sysex(const struct snd_midi_op *ops, void *private,
47 unsigned char *sysex,
199 sysex(ops, drv, sysexbuf, len, chanset); in snd_midi_process_event()
478 sysex(const struct snd_midi_op *ops, void *private, unsigned char *buf, int len, in sysex() function
584 if (ops->sysex) in sysex()
585 ops->sysex(private, buf - 1, len + 1, parsed, chset); in sysex()
/openbmc/linux/sound/isa/sb/
H A Demu8000_callback.c24 static void sysex(struct snd_emux *emu, char *buf, int len, int parsed,
65 .sysex = sysex,
447 sysex(struct snd_emux *emu, char *buf, int len, int parsed, struct snd_midi_channel_set *chset) in sysex() function
/openbmc/linux/sound/synth/emux/
H A Demux_nrpn.c381 if (emu->ops.sysex) in snd_emux_sysex()
382 emu->ops.sysex(emu, buf, len, parsed, chset); in snd_emux_sysex()
H A Demux_seq.c29 .sysex = snd_emux_sysex,
/openbmc/linux/include/sound/
H A Dseq_midi_emul.h76 void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed, member
H A Demux_synth.h52 void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed, member
/openbmc/linux/sound/drivers/opl4/
H A Dopl4_seq.c108 .sysex = snd_opl4_sysex,
/openbmc/linux/sound/drivers/opl3/
H A Dopl3_seq.c140 .sysex = snd_opl3_sysex,