Home | History | Annotate | Download | only in aiomixer

Lines Matching refs:aiomixer

43 static void process_device_select(struct aiomixer *, unsigned int);
44 static void open_device(struct aiomixer *, const char *);
47 static int select_class(struct aiomixer *, unsigned int);
48 static int select_control(struct aiomixer *, unsigned int);
49 static void slide_control(struct aiomixer *, struct aiomixer_control *, bool);
50 static int toggle_set(struct aiomixer *);
51 static void step_up(struct aiomixer *);
52 static void step_down(struct aiomixer *);
53 static int read_key(struct aiomixer *, int);
58 fputs("aiomixer [-u] [-d device]\n", stderr);
63 select_class(struct aiomixer *aio, unsigned int n)
85 select_control(struct aiomixer *aio, unsigned int n)
131 slide_control(struct aiomixer *aio,
213 toggle_set(struct aiomixer *aio)
238 step_up(struct aiomixer *aio)
257 step_down(struct aiomixer *aio)
277 read_key(struct aiomixer *aio, int ch)
402 process_device_select(struct aiomixer *aio, unsigned int num_devices)
465 open_device(struct aiomixer *aio, const char *device)
502 struct aiomixer *aio;
509 if ((aio = malloc(sizeof(struct aiomixer))) == NULL) {