Symbol: ctlslot
usr.bin/sndiod/dev.c
1748
struct ctlslot *
usr.bin/sndiod/dev.c
1751
struct ctlslot *s;
usr.bin/sndiod/dev.c
1782
ctlslot_del(struct ctlslot *s)
usr.bin/sndiod/dev.c
1800
ctlslot_visible(struct ctlslot *s, struct ctl *c)
usr.bin/sndiod/dev.c
1826
ctlslot_lookup(struct ctlslot *s, int addr)
usr.bin/sndiod/dev.c
1844
ctlslot_update(struct ctlslot *s)
usr.bin/sndiod/dev.c
1984
struct ctlslot *s;
usr.bin/sndiod/dev.c
2050
struct ctlslot *s;
usr.bin/sndiod/dev.c
2175
struct ctlslot *s;
usr.bin/sndiod/dev.c
80
struct ctlslot ctlslot_array[DEV_NCTLSLOT];
usr.bin/sndiod/dev.c
900
struct ctlslot *c;
usr.bin/sndiod/dev.h
275
extern struct ctlslot ctlslot_array[DEV_NCTLSLOT];
usr.bin/sndiod/dev.h
347
struct ctlslot *ctlslot_new(struct opt *, struct ctlops *, void *);
usr.bin/sndiod/dev.h
348
void ctlslot_del(struct ctlslot *);
usr.bin/sndiod/dev.h
349
int ctlslot_visible(struct ctlslot *, struct ctl *);
usr.bin/sndiod/dev.h
350
struct ctl *ctlslot_lookup(struct ctlslot *, int);
usr.bin/sndiod/dev.h
351
void ctlslot_update(struct ctlslot *);
usr.bin/sndiod/opt.c
513
struct ctlslot *p;
usr.bin/sndiod/sock.c
1037
if (f->pstate != SOCK_INIT || f->ctlslot == NULL) {
usr.bin/sndiod/sock.c
1046
ctl = f->ctlslot->self;
usr.bin/sndiod/sock.c
1049
if (ctlslot_visible(f->ctlslot, c))
usr.bin/sndiod/sock.c
1072
if (f->pstate < SOCK_INIT || f->ctlslot == NULL) {
usr.bin/sndiod/sock.c
1080
c = ctlslot_lookup(f->ctlslot, ntohs(m->u.ctlset.addr));
usr.bin/sndiod/sock.c
1300
if (f->ctlslot && (f->ctlops & SOCK_CTLDESC)) {
usr.bin/sndiod/sock.c
1301
mask = f->ctlslot->self;
usr.bin/sndiod/sock.c
1315
type = ctlslot_visible(f->ctlslot, c) ?
usr.bin/sndiod/sock.c
1362
if (f->ctlslot && (f->ctlops & SOCK_CTLVAL)) {
usr.bin/sndiod/sock.c
1363
mask = f->ctlslot->self;
usr.bin/sndiod/sock.c
1365
if (!ctlslot_visible(f->ctlslot, c))
usr.bin/sndiod/sock.c
138
if (f->ctlslot->opt == NULL)
usr.bin/sndiod/sock.c
1382
if (f->ctlslot && f->ctlsyncpending) {
usr.bin/sndiod/sock.c
140
if (strcmp(c->group, f->ctlslot->opt->name) == 0)
usr.bin/sndiod/sock.c
142
if (strcmp(c->group, f->ctlslot->opt->dev->name) == 0)
usr.bin/sndiod/sock.c
186
if (f->ctlslot) {
usr.bin/sndiod/sock.c
187
ctlslot_del(f->ctlslot);
usr.bin/sndiod/sock.c
188
f->ctlslot = NULL;
usr.bin/sndiod/sock.c
319
f->ctlslot = NULL;
usr.bin/sndiod/sock.c
789
f->ctlslot = ctlslot_new(opt, &sock_ctlops, f);
usr.bin/sndiod/sock.c
790
if (f->ctlslot == NULL) {
usr.bin/sndiod/sock.h
63
struct ctlslot *ctlslot;