Home
last modified time | relevance | path

Searched refs:opt_list (Results 1 – 16 of 16) sorted by relevance

/freebsd/usr.sbin/config/
H A Dmkoptions.cc62 struct opt_list *ol; in options()
141 struct opt_list *ol; in do_option()
291 struct opt_list *po; in tooption()
314 struct opt_list *po; in check_duplicate()
328 struct opt_list *po; in insert_option()
331 po = (struct opt_list *) calloc(1, sizeof *po); in insert_option()
343 struct opt_list *po; in update_option()
H A Dconfig.h189 struct opt_list { struct
194 SLIST_ENTRY(opt_list) o_next; argument
197 extern SLIST_HEAD(opt_list_head, opt_list) otab;
/freebsd/contrib/ntp/sntp/libopts/
H A Dsave.c408 void ** opt_list; in prt_val_list() local
413 opt_list = (void **)al->apzArgs; in prt_val_list()
424 tOptionValue const * ovp = *(opt_list++); in prt_val_list()
447 void ** opt_list; in prt_nested() local
459 opt_list = (void **)al->apzArgs; in prt_nested()
465 tOptionValue const * base = *(opt_list++); in prt_nested()
/freebsd/usr.sbin/rtadvd/
H A Drtadvd.c123 TAILQ_HEAD(, nd_optlist) opt_list;
131 #define opt_list nd_opt_each.opt_list macro
919 TAILQ_INIT(&ndopts.opt_list); in rs_input()
1082 TAILQ_INIT(&ndopts.opt_list); in ra_input()
1207 TAILQ_FOREACH(nol, &ndopts.opt_list, nol_next) in ra_input()
1502 TAILQ_INSERT_TAIL(&(ndopts->opt_list), nol, nol_next); in nd6_options()
1524 while ((nol = TAILQ_FIRST(&ndopts->opt_list)) != NULL) { in free_ndopts()
1525 TAILQ_REMOVE(&ndopts->opt_list, nol, nol_next); in free_ndopts()
/freebsd/usr.sbin/cron/crontab/
H A Dcrontab.c40 enum opt_t { opt_unknown, opt_list, opt_delete, opt_edit, opt_replace }; enumerator
95 case opt_list: in main()
148 Option = opt_list; in parse_args()
/freebsd/contrib/unbound/contrib/
H A Dredirect-bogus.patch79 - r->edns.opt_list = NULL;
83 - r->edns.opt_list = NULL;
102 + r->edns.opt_list = NULL;
107 + r->edns.opt_list = NULL;
H A Dfastrpz.patch3172 if(edns->opt_list) {
3173 r->edns.opt_list = edns_opt_copy_region(edns->opt_list,
/freebsd/usr.sbin/camdd/
H A Dcamdd.c3544 struct camdd_io_opts *opt_list = NULL; local
3551 opt_list = calloc(2, sizeof(struct camdd_io_opts));
3552 if (opt_list == NULL) {
3572 && (opt_list[0].dev_type != CAMDD_DEV_NONE))
3574 && (opt_list[1].dev_type != CAMDD_DEV_NONE))) {
3579 (c == 'o') ? &opt_list[1] : &opt_list[0]);
3609 if ((opt_list[0].dev_type == CAMDD_DEV_NONE)
3610 || (opt_list[1].dev_type == CAMDD_DEV_NONE))
3619 error = camdd_rw(opt_list, arglist, 2, max_io, retry_count, timeout);
3622 free(opt_list);
/freebsd/contrib/unbound/services/
H A Dmesh.h346 struct sockaddr_storage* addr, struct edns_option* opt_list);
H A Doutside_network.h512 struct edns_option* opt_list; member
H A Dmesh.c844 struct sockaddr_storage* addr, struct edns_option* opt_list) in mesh_new_prefetch() argument
847 (void)opt_list; in mesh_new_prefetch()
851 rpz_passthru, addr, opt_list); in mesh_new_prefetch()
1888 struct edns_option* opt_list = NULL; in mesh_continue() local
1917 (void)edns_opt_list_append(&opt_list, in mesh_continue()
1931 opt_list); in mesh_continue()
H A Doutside_network.c140 if((r = edns_opt_list_compare(q1->opt_list, q2->opt_list)) != 0) in serviced_cmp()
2570 struct edns_option* opt_list)
2580 key.opt_list = opt_list;
2615 uint8_t* zone, size_t zonelen, int qtype, struct edns_option* opt_list,
2664 sq->opt_list = opt_list;
2874 edns.opt_list_out = sq->opt_list;
/freebsd/sys/netinet/tcp_stacks/
H A Dtcp_rack.h478 struct def_opt_head opt_list; member
H A Drack.c14672 TAILQ_INIT(&rack->r_ctl.opt_list); in rack_init()
15094 while (!TAILQ_EMPTY(&rack->r_ctl.opt_list)) { in rack_fini()
15097 dol = TAILQ_FIRST(&rack->r_ctl.opt_list); in rack_fini()
15098 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); in rack_fini()
22865 TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next); in rack_add_deferred_option()
24132 TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) { in rack_apply_deferred_options()
24133 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); in rack_apply_deferred_options()
/freebsd/contrib/unbound/daemon/
H A Dworker.c831 int rpz_passthru, struct edns_option* opt_list) in reply_and_prefetch() argument
833 (void)opt_list; in reply_and_prefetch()
853 &repinfo->client_addr, opt_list); in reply_and_prefetch()
/freebsd/contrib/unbound/doc/
H A DChangelog1803 - Fix to make python module opt_list use opt_list_in.
5980 after parse use edns_opt_find(edns.opt_list, LDNS_EDNS_NSID),
5982 the opt_list passed to send_query, or in edns_opt_inplace_reply.