Searched refs:sysex (Results 1 – 11 of 11) sorted by relevance
/linux-6.1.9/sound/core/seq/oss/ |
D | seq_oss_synth.c | 321 kfree(info->sysex); in snd_seq_oss_synth_cleanup() 322 info->sysex = NULL; in snd_seq_oss_synth_cleanup() 398 if (info->sysex) in snd_seq_oss_synth_reset() 399 info->sysex->len = 0; /* reset sysex */ in snd_seq_oss_synth_reset() 411 kfree(info->sysex); in snd_seq_oss_synth_reset() 412 info->sysex = NULL; in snd_seq_oss_synth_reset() 493 struct seq_oss_synth_sysex *sysex; in snd_seq_oss_synth_sysex() local 500 sysex = info->sysex; in snd_seq_oss_synth_sysex() 501 if (sysex == NULL) { in snd_seq_oss_synth_sysex() 502 sysex = kzalloc(sizeof(*sysex), GFP_KERNEL); in snd_seq_oss_synth_sysex() [all …]
|
D | seq_oss_device.h | 58 struct seq_oss_synth_sysex *sysex; member
|
/linux-6.1.9/sound/usb/line6/ |
D | pod.c | 214 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()
|
/linux-6.1.9/sound/core/seq/ |
D | seq_midi_emul.c | 46 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()
|
/linux-6.1.9/sound/isa/sb/ |
D | emu8000_callback.c | 24 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
|
/linux-6.1.9/sound/synth/emux/ |
D | emux_nrpn.c | 378 if (emu->ops.sysex) in snd_emux_sysex() 379 emu->ops.sysex(emu, buf, len, parsed, chset); in snd_emux_sysex()
|
D | emux_seq.c | 29 .sysex = snd_emux_sysex,
|
/linux-6.1.9/include/sound/ |
D | seq_midi_emul.h | 76 void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed, member
|
D | emux_synth.h | 52 void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed, member
|
/linux-6.1.9/sound/drivers/opl4/ |
D | opl4_seq.c | 108 .sysex = snd_opl4_sysex,
|
/linux-6.1.9/sound/drivers/opl3/ |
D | opl3_seq.c | 140 .sysex = snd_opl3_sysex,
|