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()
54 if (! snd_seq_oss_process_event(dp, (union evrec *)ev, &tmpev)) { in snd_seq_oss_oob_user()
55 snd_seq_oss_dispatch(dp, &tmpev, 0, 0); in snd_seq_oss_oob_user()
/linux/sound/core/seq/
H A Dseq_dummy.c84 struct snd_seq_event tmpev; in dummy_input() local
90 tmpev = *ev; in dummy_input()
92 tmpev.source.port = p->connect; in dummy_input()
94 tmpev.source.port = p->port; in dummy_input()
95 tmpev.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS; in dummy_input()
96 return snd_seq_kernel_client_dispatch(p->client, &tmpev, atomic, hop); in dummy_input()
H A Dseq_clientmgr.c473 struct snd_seq_ump_event tmpev; in snd_seq_read() local
475 memcpy(&tmpev, &cell->event, aligned_size); in snd_seq_read()
476 tmpev.data.ext.len &= ~SNDRV_SEQ_EXT_MASK; in snd_seq_read()
477 if (copy_to_user(buf, &tmpev, aligned_size)) { in snd_seq_read()
851 struct snd_seq_event tmpev, *ev; in snd_seq_dispatch_event() local
854 tmpev = cell->event; in snd_seq_dispatch_event()
855 tmpev.type = SNDRV_SEQ_EVENT_NOTEON; in snd_seq_dispatch_event()
856 result = snd_seq_deliver_event(client, &tmpev, atomic, hop); in snd_seq_dispatch_event()