Searched defs:opts (Results 1 - 9 of 9) sorted by relevance
/bind-9.11.3/unit/atf-src/atf-c++/detail/ |
H A D | application.cpp | 161 options_set opts = options(); local 162 for (options_set::const_iterator iter = opts.begin(); 163 iter != opts.end(); iter++) {
|
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/ |
H A D | opt.c | 54 static opt_t opts[MAX_OPTS]; variable 68 opt = &opts[nopts++]; 94 if (opts[i].desc != NULL) 95 arg_len += strlen(opts[i].desc) + 1; 102 fprintf(stderr, " [-%c", opts[i].c); 103 if (opts[i].desc != NULL) 104 fprintf(stderr, " %s", opts[i].desc); 111 fprintf(stderr, " -%c %s", opts[i].c, opts[i].help); 112 if (opts[ [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | application.cpp | 131 options_set opts = specific_options(); local 132 opts.insert(option('h', "", "Shows this help message")); 133 return opts; 167 options_set opts = options(); local 168 for (options_set::const_iterator iter = opts.begin(); 169 iter != opts.end(); iter++) { 221 options_set opts = options(); local 222 assert(!opts.empty()); 225 for (options_set::const_iterator iter = opts.begin(); 226 iter != opts [all...] |
/bind-9.11.3/bin/tests/db/ |
H A D | t_db.c | 2789 int opts; local 2820 opts = 0; 2901 opts |= DNS_DBFIND_GLUEOK; 2903 opts |= DNS_DBFIND_VALIDATEGLUE; 2922 opts,
|
/bind-9.11.3/bin/tools/ |
H A D | mdig.c | 568 dns_ednsopt_t opts[EDNSOPTS + DNS_EDNSOPTIONS]; local 581 opts[i].code = DNS_OPT_NSID; 582 opts[i].length = 0; 583 opts[i].value = NULL; 603 opts[i].code = DNS_OPT_CLIENT_SUBNET; 604 opts[i].length = (isc_uint16_t) addrl + 4; 635 opts[i].value = (isc_uint8_t *) ecsbuf; 641 opts[i].code = DNS_OPT_COOKIE; 649 opts[i].value = isc_buffer_base(&b); 650 opts[ [all...] |
/bind-9.11.3/lib/dns/ |
H A D | catz.c | 35 dns_catz_options_t opts; member in struct:dns_catz_entry 153 dns_catz_options_t *opts) 155 if (opts->masters.count == 0 && defaults->masters.count != 0) 156 dns_ipkeylist_copy(mctx, &defaults->masters, &opts->masters); 159 opts->zonedir = isc_mem_strdup(mctx, defaults->zonedir); 161 if (opts->allow_query == NULL && defaults->allow_query != NULL) 162 isc_buffer_dup(mctx, &opts->allow_query, defaults->allow_query); 163 if (opts->allow_transfer == NULL && defaults->allow_transfer != NULL) 164 isc_buffer_dup(mctx, &opts->allow_transfer, 168 opts 152 dns_catz_options_setdefault(isc_mem_t *mctx, const dns_catz_options_t *defaults, dns_catz_options_t *opts) argument [all...] |
/bind-9.11.3/lib/bind9/ |
H A D | check.c | 3096 const cfg_obj_t *opts = NULL; local 3110 opts = voptions; 3112 opts = options; 3161 if (opts != NULL) { 3163 if (cfg_map_get(opts, "response-policy", &obj) == ISC_R_SUCCESS 3168 if (cfg_map_get(opts, "catalog-zones", &obj) == ISC_R_SUCCESS 3179 if (opts != NULL && check_forward(opts, NULL, logctx) != ISC_R_SUCCESS) 3193 if (opts != NULL && check_dual_stack(opts, logct [all...] |
/bind-9.11.3/bin/dig/ |
H A D | dighost.c | 1713 unsigned int flags, dns_ednsopt_t *opts, size_t count) 1720 opts, count); 2619 dns_ednsopt_t opts[MAXOPTS]; local 2630 opts[i].code = DNS_OPT_NSID; 2631 opts[i].length = 0; 2632 opts[i].value = NULL; 2652 opts[i].code = DNS_OPT_CLIENT_SUBNET; 2653 opts[i].length = (isc_uint16_t) addrl + 4; 2715 opts[i].value = (isc_uint8_t *) ecsbuf; 2721 opts[ 1712 add_opt(dns_message_t *msg, isc_uint16_t udpsize, isc_uint16_t edns, unsigned int flags, dns_ednsopt_t *opts, size_t count) argument [all...] |
/bind-9.11.3/bin/named/ |
H A D | server.c | 2432 dns_catz_options_t *opts; local 2521 opts = dns_catz_zone_getdefoptions(zone); 2526 view->mctx, &opts->masters); 2530 opts->in_memory = cfg_obj_asboolean(obj); 2533 if (!opts->in_memory && obj != NULL && cfg_obj_isstring(obj)) { 2534 opts->zonedir = isc_mem_strdup(view->mctx, 2536 if (isc_file_isdirectory(opts->zonedir) != ISC_R_SUCCESS) { 2540 "saved", opts->zonedir); 2541 opts->in_memory = ISC_TRUE; 2547 opts [all...] |
Completed in 70 milliseconds