Lines Matching defs:level
72 printf(" -a,--abstract L select abstraction level (none or basic)\n");
601 int level)
617 if (level & LEVEL_ID) {
656 if (level & LEVEL_BASIC) {
719 static int controls(int level)
742 if (!(level & LEVEL_INACTIVE) && snd_ctl_elem_info_is_inactive(info))
747 if (level & LEVEL_BASIC)
774 static int show_selem(snd_mixer_t *handle, snd_mixer_selem_id_t *id, const char *space, int level)
789 if (level & LEVEL_BASIC) {
1042 static int selems(int level)
1072 if (!(level & LEVEL_INACTIVE) && !snd_mixer_selem_is_active(elem))
1075 show_selem(handle, sid, " ", level);
1779 int badopt, retval, level = 0;
1832 level |= LEVEL_INACTIVE;
1852 fprintf(stderr, "Select correct abstraction level (none or basic)...\n");
1881 retval = selems(LEVEL_BASIC | level) ? 1 : 0;
1889 retval = controls(level) ? 1 : 0;
1891 retval = controls(LEVEL_BASIC | level) ? 1 : 0;
1893 retval = selems(level) ? 1 : 0;
1895 retval = selems(LEVEL_BASIC | level) ? 1 : 0;