Searched refs:sysex (Results 1 – 11 of 11) sorted by relevance
/linux/sound/core/seq/oss/ |
A D | seq_oss_synth.c | 398 if (info->sysex) in snd_seq_oss_synth_reset() 500 sysex = info->sysex; in snd_seq_oss_synth_sysex() 502 sysex = kzalloc(sizeof(*sysex), GFP_KERNEL); in snd_seq_oss_synth_sysex() 505 info->sysex = sysex; in snd_seq_oss_synth_sysex() 509 dest = sysex->buf + sysex->len; in snd_seq_oss_synth_sysex() 517 sysex->len++; in snd_seq_oss_synth_sysex() 519 sysex->len = 0; in snd_seq_oss_synth_sysex() 520 sysex->skip = 1; in snd_seq_oss_synth_sysex() 527 sysex->skip = 0; in snd_seq_oss_synth_sysex() 528 sysex->len = 0; in snd_seq_oss_synth_sysex() [all …]
|
A D | seq_oss_device.h | 58 struct seq_oss_synth_sysex *sysex; member
|
/linux/sound/usb/line6/ |
A D | pod.c | 213 char *sysex; in pod_set_system_param_int() local 216 sysex = pod_alloc_sysex_buffer(pod, POD_SYSEX_SYSTEM, size); in pod_set_system_param_int() 217 if (!sysex) in pod_set_system_param_int() 219 sysex[SYSEX_DATA_OFS] = code; in pod_set_system_param_int() 220 sysex[SYSEX_DATA_OFS + 1] = (value >> 12) & 0x0f; in pod_set_system_param_int() 221 sysex[SYSEX_DATA_OFS + 2] = (value >> 8) & 0x0f; in pod_set_system_param_int() 222 sysex[SYSEX_DATA_OFS + 3] = (value >> 4) & 0x0f; in pod_set_system_param_int() 223 sysex[SYSEX_DATA_OFS + 4] = (value) & 0x0f; in pod_set_system_param_int() 224 line6_send_sysex_message(&pod->line6, sysex, size); in pod_set_system_param_int() 225 kfree(sysex); in pod_set_system_param_int()
|
/linux/sound/core/seq/ |
A 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/sound/isa/sb/ |
A 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/sound/synth/emux/ |
A 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()
|
A D | emux_seq.c | 29 .sysex = snd_emux_sysex,
|
/linux/include/sound/ |
A D | emux_synth.h | 52 void (*sysex)(struct snd_emux *emu, char *buf, int len, int parsed, member
|
A D | seq_midi_emul.h | 76 void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed, member
|
/linux/sound/drivers/opl4/ |
A D | opl4_seq.c | 108 .sysex = snd_opl4_sysex,
|
/linux/sound/drivers/opl3/ |
A D | opl3_seq.c | 140 .sysex = snd_opl3_sysex,
|
Completed in 15 milliseconds