Symbol: opt_list
sys/netinet/tcp_stacks/rack.c
14519
TAILQ_INIT(&rack->r_ctl.opt_list);
sys/netinet/tcp_stacks/rack.c
14939
while (!TAILQ_EMPTY(&rack->r_ctl.opt_list)) {
sys/netinet/tcp_stacks/rack.c
14942
dol = TAILQ_FIRST(&rack->r_ctl.opt_list);
sys/netinet/tcp_stacks/rack.c
14943
TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/rack.c
22698
TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/rack.c
23960
TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) {
sys/netinet/tcp_stacks/rack.c
23961
TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
sys/netinet/tcp_stacks/tcp_rack.h
473
struct def_opt_head opt_list;
usr.sbin/camdd/camdd.c
3544
struct camdd_io_opts *opt_list = NULL;
usr.sbin/camdd/camdd.c
3551
opt_list = calloc(2, sizeof(struct camdd_io_opts));
usr.sbin/camdd/camdd.c
3552
if (opt_list == NULL) {
usr.sbin/camdd/camdd.c
3572
&& (opt_list[0].dev_type != CAMDD_DEV_NONE))
usr.sbin/camdd/camdd.c
3574
&& (opt_list[1].dev_type != CAMDD_DEV_NONE))) {
usr.sbin/camdd/camdd.c
3579
(c == 'o') ? &opt_list[1] : &opt_list[0]);
usr.sbin/camdd/camdd.c
3609
if ((opt_list[0].dev_type == CAMDD_DEV_NONE)
usr.sbin/camdd/camdd.c
3610
|| (opt_list[1].dev_type == CAMDD_DEV_NONE))
usr.sbin/camdd/camdd.c
3619
error = camdd_rw(opt_list, arglist, 2, max_io, retry_count, timeout);
usr.sbin/camdd/camdd.c
3622
free(opt_list);
usr.sbin/config/config.h
189
struct opt_list {
usr.sbin/config/config.h
194
SLIST_ENTRY(opt_list) o_next;
usr.sbin/config/config.h
197
extern SLIST_HEAD(opt_list_head, opt_list) otab;
usr.sbin/config/mkoptions.cc
141
struct opt_list *ol;
usr.sbin/config/mkoptions.cc
291
struct opt_list *po;
usr.sbin/config/mkoptions.cc
314
struct opt_list *po;
usr.sbin/config/mkoptions.cc
328
struct opt_list *po;
usr.sbin/config/mkoptions.cc
331
po = (struct opt_list *) calloc(1, sizeof *po);
usr.sbin/config/mkoptions.cc
343
struct opt_list *po;
usr.sbin/config/mkoptions.cc
62
struct opt_list *ol;
usr.sbin/cron/crontab/crontab.c
148
Option = opt_list;
usr.sbin/cron/crontab/crontab.c
95
case opt_list:
usr.sbin/rtadvd/rtadvd.c
1084
TAILQ_INIT(&ndopts.opt_list);
usr.sbin/rtadvd/rtadvd.c
1209
TAILQ_FOREACH(nol, &ndopts.opt_list, nol_next)
usr.sbin/rtadvd/rtadvd.c
123
TAILQ_HEAD(, nd_optlist) opt_list;
usr.sbin/rtadvd/rtadvd.c
131
#define opt_list nd_opt_each.opt_list
usr.sbin/rtadvd/rtadvd.c
1506
TAILQ_INSERT_TAIL(&(ndopts->opt_list), nol, nol_next);
usr.sbin/rtadvd/rtadvd.c
1528
while ((nol = TAILQ_FIRST(&ndopts->opt_list)) != NULL) {
usr.sbin/rtadvd/rtadvd.c
1529
TAILQ_REMOVE(&ndopts->opt_list, nol, nol_next);
usr.sbin/rtadvd/rtadvd.c
921
TAILQ_INIT(&ndopts.opt_list);