Home | History | Annotate | Download | only in tinyalsa

Lines Matching refs:elist

92     struct snd_ctl_elem_list elist;
105 memset(&elist, 0, sizeof(elist));
106 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0)
113 mixer->ctl = calloc(elist.count, sizeof(struct mixer_ctl));
114 mixer->info = calloc(elist.count, sizeof(struct snd_ctl_elem_info));
118 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id));
122 mixer->count = elist.count;
124 elist.space = mixer->count;
125 elist.pids = eid;
126 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0)