Home | History | Annotate | Download | only in libaudio2

Lines Matching full:info

166     LOGV("info = %08x\n", p->info);
172 static void info_dump(struct snd_pcm_info *info)
174 LOGV("device = %d\n", info->device);
175 LOGV("subdevice = %d\n", info->subdevice);
176 LOGV("stream = %d\n", info->stream);
177 LOGV("card = %d\n", info->card);
178 LOGV("id = '%s'\n", info->id);
179 LOGV("name = '%s'\n", info->name);
180 LOGV("subname = '%s'\n", info->subname);
181 LOGV("dev_class = %d\n", info->dev_class);
182 LOGV("dev_subclass = %d\n", info->dev_subclass);
183 LOGV("subdevices_count = %d\n", info->subdevices_count);
184 LOGV("subdevices_avail = %d\n", info->subdevices_avail);
188 static void info_dump(struct snd_pcm_info *info) {}
314 struct snd_pcm_info info;
346 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_INFO, &info)) {
347 oops(pcm, errno, "cannot get info - %s");
350 info_dump(&info);