Home
last modified time | relevance | path

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

/src/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;
/src/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()
/src/usr.sbin/rtadvd/
H A Drtadvd.c123 TAILQ_HEAD(, nd_optlist) opt_list;
131 #define opt_list nd_opt_each.opt_list macro
921 TAILQ_INIT(&ndopts.opt_list); in rs_input()
1084 TAILQ_INIT(&ndopts.opt_list); in ra_input()
1209 TAILQ_FOREACH(nol, &ndopts.opt_list, nol_next) in ra_input()
1506 TAILQ_INSERT_TAIL(&(ndopts->opt_list), nol, nol_next); in nd6_options()
1528 while ((nol = TAILQ_FIRST(&ndopts->opt_list)) != NULL) { in free_ndopts()
1529 TAILQ_REMOVE(&ndopts->opt_list, nol, nol_next); in free_ndopts()
/src/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()
/src/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,
/src/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);
/src/contrib/jemalloc/bin/
H A Djeprof.in326 $main::opt_list = "";
401 "list=s" => \$main::opt_list,
455 if ($main::opt_disasm || $main::opt_list || $main::opt_symbols) {
488 ($main::opt_list eq '' ? 0 : 1) +
623 } elsif ($main::opt_list) {
624 PrintListing($total, $libs, $flat, $cumulative, $main::opt_list, 0);
882 $main::opt_list = 0;
925 $main::opt_list = 1;
2635 if ($main::opt_disasm || $main::opt_list) {
/src/contrib/unbound/services/
H A Dmesh.h359 struct sockaddr_storage* addr, struct edns_option* opt_list);
H A Doutside_network.h512 struct edns_option* opt_list; member
H A Doutside_network.c140 if((r = edns_opt_list_compare(q1->opt_list, q2->opt_list)) != 0) in serviced_cmp()
2585 struct edns_option* opt_list)
2595 key.opt_list = opt_list;
2630 uint8_t* zone, size_t zonelen, int qtype, struct edns_option* opt_list,
2679 sq->opt_list = opt_list;
2889 edns.opt_list_out = sq->opt_list;
H A Dmesh.c863 struct sockaddr_storage* addr, struct edns_option* opt_list) in mesh_new_prefetch() argument
866 (void)opt_list; in mesh_new_prefetch()
870 rpz_passthru, addr, opt_list); in mesh_new_prefetch()
2114 struct edns_option* opt_list = NULL; in mesh_continue() local
2143 (void)edns_opt_list_append(&opt_list, in mesh_continue()
2157 opt_list); in mesh_continue()
/src/sys/netinet/tcp_stacks/
H A Dtcp_rack.h473 struct def_opt_head opt_list; member
H A Drack.c14519 TAILQ_INIT(&rack->r_ctl.opt_list); in rack_init()
14939 while (!TAILQ_EMPTY(&rack->r_ctl.opt_list)) { in rack_fini()
14942 dol = TAILQ_FIRST(&rack->r_ctl.opt_list); in rack_fini()
14943 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); in rack_fini()
22700 TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next); in rack_add_deferred_option()
23962 TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) { in rack_apply_deferred_options()
23963 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next); in rack_apply_deferred_options()
/src/contrib/unbound/pythonmod/
H A Dinterface.i688 %ignore edns_data::opt_list;
707 def _opt_list_iter(self): return EdnsOptsListIter(self.opt_list)
710 opt_list = property(_opt_list)
/src/contrib/unbound/daemon/
H A Dworker.c920 int rpz_passthru, struct edns_option* opt_list) in reply_and_prefetch() argument
922 (void)opt_list; in reply_and_prefetch()
942 &repinfo->client_addr, opt_list); in reply_and_prefetch()
/src/contrib/unbound/doc/
H A DChangelog2335 - Fix to make python module opt_list use opt_list_in.
6512 after parse use edns_opt_find(edns.opt_list, LDNS_EDNS_NSID),
6514 the opt_list passed to send_query, or in edns_opt_inplace_reply.