Searched refs:sysex (Results 1 – 11 of 11) sorted by relevance
/Linux-v4.19/sound/core/seq/oss/ |
D | seq_oss_synth.c | 334 kfree(info->sysex); in snd_seq_oss_synth_cleanup() 335 info->sysex = NULL; in snd_seq_oss_synth_cleanup() 411 if (info->sysex) in snd_seq_oss_synth_reset() 412 info->sysex->len = 0; /* reset sysex */ in snd_seq_oss_synth_reset() 424 kfree(info->sysex); in snd_seq_oss_synth_reset() 425 info->sysex = NULL; in snd_seq_oss_synth_reset() 505 struct seq_oss_synth_sysex *sysex; in snd_seq_oss_synth_sysex() local 512 sysex = info->sysex; in snd_seq_oss_synth_sysex() 513 if (sysex == NULL) { in snd_seq_oss_synth_sysex() 514 sysex = kzalloc(sizeof(*sysex), GFP_KERNEL); in snd_seq_oss_synth_sysex() [all …]
|
D | seq_oss_device.h | 70 struct seq_oss_synth_sysex *sysex; member
|
/Linux-v4.19/sound/usb/line6/ |
D | pod.c | 224 char *sysex; in pod_set_system_param_int() local 227 sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size); in pod_set_system_param_int() 228 if (!sysex) in pod_set_system_param_int() 230 sysex[SYSEX_DATA_OFS] = code; in pod_set_system_param_int() 231 sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f; in pod_set_system_param_int() 232 sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f; in pod_set_system_param_int() 233 sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f; in pod_set_system_param_int() 234 sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f; in pod_set_system_param_int() 235 line6_send_sysex_message(&pod->line6, sysex, size); in pod_set_system_param_int() 236 kfree(sysex); in pod_set_system_param_int()
|
/Linux-v4.19/sound/core/seq/ |
D | seq_midi_emul.c | 58 static void sysex(struct snd_midi_op *ops, void *private, unsigned char *sysex, 210 sysex(ops, drv, sysexbuf, len, chanset); in snd_midi_process_event() 487 sysex(struct snd_midi_op *ops, void *private, unsigned char *buf, int len, in sysex() function 593 if (ops->sysex) in sysex() 594 ops->sysex(private, buf - 1, len + 1, parsed, chset); in sysex()
|
/Linux-v4.19/sound/isa/sb/ |
D | emu8000_callback.c | 37 static void sysex(struct snd_emux *emu, char *buf, int len, int parsed, 78 .sysex = sysex, 460 sysex(struct snd_emux *emu, char *buf, int len, int parsed, struct snd_midi_channel_set *chset) in sysex() function
|
/Linux-v4.19/sound/synth/emux/ |
D | emux_nrpn.c | 392 if (emu->ops.sysex) in snd_emux_sysex() 393 emu->ops.sysex(emu, buf, len, parsed, chset); in snd_emux_sysex()
|
D | emux_seq.c | 42 .sysex = snd_emux_sysex,
|
/Linux-v4.19/include/sound/ |
D | emux_synth.h | 65 void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed, member
|
D | seq_midi_emul.h | 90 void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed, member
|
/Linux-v4.19/sound/drivers/opl4/ |
D | opl4_seq.c | 108 .sysex = snd_opl4_sysex,
|
/Linux-v4.19/sound/drivers/opl3/ |
D | opl3_seq.c | 152 .sysex = snd_opl3_sysex,
|