Symbol: ctlslot
usr.bin/sndiod/dev.c
1726
struct ctlslot *
usr.bin/sndiod/dev.c
1729
struct ctlslot *s;
usr.bin/sndiod/dev.c
1763
ctlslot_del(struct ctlslot *s)
usr.bin/sndiod/dev.c
1784
ctlslot_visible(struct ctlslot *s, struct ctl *c)
usr.bin/sndiod/dev.c
1812
ctlslot_lookup(struct ctlslot *s, int addr)
usr.bin/sndiod/dev.c
1830
ctlslot_update(struct ctlslot *s)
usr.bin/sndiod/dev.c
1996
struct ctlslot *s;
usr.bin/sndiod/dev.c
2066
struct ctlslot *s;
usr.bin/sndiod/dev.c
2196
struct ctlslot *s;
usr.bin/sndiod/dev.c
84
struct ctlslot ctlslot_array[DEV_NCTLSLOT];
usr.bin/sndiod/dev.c
888
struct ctlslot *c;
usr.bin/sndiod/dev.h
281
extern struct ctlslot ctlslot_array[DEV_NCTLSLOT];
usr.bin/sndiod/dev.h
353
struct ctlslot *ctlslot_new(struct opt *, struct midithru *, struct ctlops *, void *);
usr.bin/sndiod/dev.h
354
void ctlslot_del(struct ctlslot *);
usr.bin/sndiod/dev.h
355
int ctlslot_visible(struct ctlslot *, struct ctl *);
usr.bin/sndiod/dev.h
356
struct ctl *ctlslot_lookup(struct ctlslot *, int);
usr.bin/sndiod/dev.h
357
void ctlslot_update(struct ctlslot *);
usr.bin/sndiod/opt.c
549
struct ctlslot *p;
usr.bin/sndiod/sock.c
1068
if (f->pstate != SOCK_INIT || f->ctlslot == NULL) {
usr.bin/sndiod/sock.c
1077
ctl = f->ctlslot->self;
usr.bin/sndiod/sock.c
1080
if (ctlslot_visible(f->ctlslot, c))
usr.bin/sndiod/sock.c
1103
if (f->pstate < SOCK_INIT || f->ctlslot == NULL) {
usr.bin/sndiod/sock.c
1111
c = ctlslot_lookup(f->ctlslot, ntohs(m->u.ctlset.addr));
usr.bin/sndiod/sock.c
1331
if (f->ctlslot && (f->ctlops & SOCK_CTLDESC)) {
usr.bin/sndiod/sock.c
1332
mask = f->ctlslot->self;
usr.bin/sndiod/sock.c
1346
type = ctlslot_visible(f->ctlslot, c) ?
usr.bin/sndiod/sock.c
138
if (f->ctlslot->opt == NULL)
usr.bin/sndiod/sock.c
1393
if (f->ctlslot && (f->ctlops & SOCK_CTLVAL)) {
usr.bin/sndiod/sock.c
1394
mask = f->ctlslot->self;
usr.bin/sndiod/sock.c
1396
if (!ctlslot_visible(f->ctlslot, c))
usr.bin/sndiod/sock.c
140
if (strcmp(c->group, f->ctlslot->opt->name) == 0)
usr.bin/sndiod/sock.c
1413
if (f->ctlslot && f->ctlsyncpending) {
usr.bin/sndiod/sock.c
142
if (strcmp(c->group, f->ctlslot->opt->dev->name) == 0)
usr.bin/sndiod/sock.c
188
if (f->ctlslot) {
usr.bin/sndiod/sock.c
189
ctlslot_del(f->ctlslot);
usr.bin/sndiod/sock.c
190
f->ctlslot = NULL;
usr.bin/sndiod/sock.c
322
f->ctlslot = NULL;
usr.bin/sndiod/sock.c
825
f->ctlslot = ctlslot_new(opt, midithru, &sock_ctlops, f);
usr.bin/sndiod/sock.c
826
if (f->ctlslot == NULL) {
usr.bin/sndiod/sock.h
65
struct ctlslot *ctlslot;