Home
last modified time | relevance | path

Searched refs:tmpev (Results 1 – 3 of 3) sorted by relevance

/linux/sound/core/seq/oss/
H A Dseq_oss_ioctl.c47 struct snd_seq_event tmpev; in snd_seq_oss_oob_user() local
51 memset(&tmpev, 0, sizeof(tmpev)); in snd_seq_oss_oob_user()
52 snd_seq_oss_fill_addr(dp, &tmpev, dp->addr.client, dp->addr.port); in snd_seq_oss_oob_user()
53 tmpev.time.tick = 0; in snd_seq_oss_oob_user()
57 if (!snd_seq_oss_process_event(dp, (union evrec *)ev, &tmpev, &lock)) in snd_seq_oss_oob_user()
58 snd_seq_oss_dispatch(dp, &tmpev, 0, 0); in snd_seq_oss_oob_user()
/linux/sound/core/seq/
H A Dseq_dummy.c85 union __snd_seq_event tmpev; in dummy_input() local
93 memcpy(&tmpev, ev, size); in dummy_input()
95 tmpev.legacy.source.port = p->connect; in dummy_input()
97 tmpev.legacy.source.port = p->port; in dummy_input()
98 tmpev.legacy.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS; in dummy_input()
99 return snd_seq_kernel_client_dispatch(p->client, &tmpev.legacy, atomic, hop); in dummy_input()
H A Dseq_clientmgr.c453 struct snd_seq_ump_event tmpev; in snd_seq_read() local
455 memcpy(&tmpev, &cell->event, aligned_size); in snd_seq_read()
456 tmpev.data.ext.len &= ~SNDRV_SEQ_EXT_MASK; in snd_seq_read()
457 tmpev.data.ext.ptr = NULL; in snd_seq_read()
458 if (copy_to_user(buf, &tmpev, aligned_size)) { in snd_seq_read()
867 struct snd_seq_event tmpev, *ev; in snd_seq_dispatch_event() local
870 tmpev = cell->event; in snd_seq_dispatch_event()
871 tmpev.type = SNDRV_SEQ_EVENT_NOTEON; in snd_seq_dispatch_event()
872 result = snd_seq_deliver_event(client, &tmpev, atomic, hop); in snd_seq_dispatch_event()