Searched defs:callback (Results 1 - 5 of 5) sorted by relevance

/sound/synth/emux/
H A Demux_seq.c143 struct snd_seq_port_callback *callback)
168 callback->private_free = free_port;
169 callback->private_data = p;
179 p->chset.port = snd_seq_event_port_attach(emu->client, callback,
141 snd_emux_create_port(struct snd_emux *emu, char *name, int max_channels, int oss_port, struct snd_seq_port_callback *callback) argument
H A Demux_oss.c113 struct snd_seq_port_callback callback; local
127 memset(&callback, 0, sizeof(callback));
128 callback.owner = THIS_MODULE;
129 callback.event_input = snd_emux_event_oss_input;
133 1, &callback);
H A Dsoundfont.c123 * The sample_write and callargs pararameters allow a callback into
703 * If there is data it will be written to the soundcard via the callback
751 rc = sflist->callback.sample_new
752 (sflist->callback.private_data, sp, sflist->memhdr,
1017 if (sflist->callback.sample_new) {
1018 rc = sflist->callback.sample_new
1019 (sflist->callback.private_data, smp, sflist->memhdr,
1378 if (sflist->callback.sample_free)
1379 sflist->callback.sample_free(sflist->callback
1394 snd_sf_new(struct snd_sf_callback *callback, struct snd_util_memhdr *hdr) argument
[all...]
/sound/core/seq/oss/
H A Dseq_oss_init.c317 struct snd_seq_port_callback callback; local
327 memset(&callback, 0, sizeof(callback));
328 callback.owner = THIS_MODULE;
329 callback.private_data = dp;
330 callback.event_input = snd_seq_oss_event_input;
331 callback.private_free = free_devinfo;
332 port.kernel = &callback;
399 * free device informations - private_free callback of port
/sound/core/seq/
H A Dseq_clientmgr.c991 * others depends on return value from driver callback
1246 struct snd_seq_port_callback *callback; local
1264 if ((callback = info.kernel) != NULL) {
1265 if (callback->owner)
1266 port->owner = callback->owner;
1267 port->private_data = callback->private_data;
1268 port->private_free = callback->private_free;
1269 port->callback_all = callback->callback_all;
1270 port->event_input = callback->event_input;
1271 port->c_src.open = callback
[all...]

Completed in 3427 milliseconds