Searched refs:ndots (Results 1 - 25 of 33) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/lwresd/lwresd1/
H A Dresolv.conf21 ndots 1
H A Dlwresd.conf33 ndots 1;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/lwresd/
H A Dresolv.conf21 ndots 1
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/include/named/
H A Dlwsearch.h56 unsigned int ndots; member in struct:ns_lwsearchctx
88 dns_name_t *name, unsigned int ndots);
H A Dlwresd.h40 unsigned int ndots; member in struct:ns_lwresd
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/
H A Dlwsearch.c137 dns_name_t *name, unsigned int ndots)
144 sctx->ndots = ndots;
151 if (dns_name_countlabels(name) > ndots)
136 ns_lwsearchctx_init(ns_lwsearchctx_t *sctx, ns_lwsearchlist_t *list, dns_name_t *name, unsigned int ndots) argument
H A Dlwresd.c236 * Build the ndots line
238 if (lwc->ndots != 1) {
240 snprintf(str, sizeof(str), "%u", lwc->ndots);
314 (void)cfg_map_get(lwres, "ndots", &obj);
316 lwresd->ndots = cfg_obj_asuint32(obj);
318 lwresd->ndots = 1;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/
H A Dlwconfig.c240 confdata->ndots = 1;
292 confdata->ndots = 1;
534 long ndots; local
551 } else if (strncmp("ndots:", word, 6) == 0) {
552 ndots = strtol(word + 6, &p, 10);
555 if (ndots < 0 || ndots > 0xff) /* Out of range. */
557 confdata->ndots = (lwres_uint8_t)ndots;
716 if (confdata->ndots >
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/irs/
H A Dresconf.c118 /*%< set to n in 'options ndots:n' */
119 isc_uint8_t ndots; member in struct:irs_resconf
438 long ndots; local
449 } else if (strncmp("ndots:", word, 6) == 0) {
450 ndots = strtol(word + 6, &p, 10);
453 if (ndots < 0 || ndots > 0xff) /* Out of range. */
455 conf->ndots = (isc_uint8_t)ndots;
507 conf->ndots
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/preproc/pic/
H A Dcommon.cpp68 int ndots; local
72 ndots = 2;
75 ndots = 4*int(M_PI/(2.0*gap_angle));
76 gap_angle = (M_PI*2.0)/ndots;
79 for (int i = 0; i < ndots; i++, ang += gap_angle)
200 int ndots = 4 * int(le / lt.dash_width / 4 + 0.5); local
201 if (ndots < 4)
202 ndots = 4;
207 for (int i = 1; i <= ndots; i++) {
210 double ld = i * le / ndots;
299 int ndots = int(total_angle/(lt.dash_width/rad) + .5); local
[all...]
H A Dtroff.cpp100 int ndots = int(dist/lt.dash_width + .5); local
101 if (ndots == 0)
104 vec /= double(ndots);
105 for (int j = 0; j <= ndots; j++)
/netbsd-6-1-5-RELEASE/dist/dhcp/minires/
H A Dres_init.c186 statp->ndots = 1;
420 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
421 i = atoi(cp + sizeof("ndots:") - 1);
423 statp->ndots = i;
425 statp->ndots = RES_MAXNDOTS;
428 printf(";;\tndots=%d\n", statp->ndots);
H A Dres_query.c221 * (The threshold can be set with the "ndots" option.)
223 if (dots >= statp->ndots || trailing_dot)
302 if (statp->ndots) {
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/src/
H A Dwrite-java.c98 int ndots = 0; local
115 ndots++;
117 return ndots;
949 int ndots; local
1002 ndots = check_resource_name (resource_name);
1003 if (ndots < 0)
1018 subdirs = (ndots > 0 ? (char **) xallocsa (ndots * sizeof (char *)) : NULL);
1026 for (i = 0; i < ndots; i++)
1058 for (i = 0; i < ndots;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libevent/dist/
H A Devdns.h127 * number is greater than the ndots setting then the names is first tried
130 * The ndots setting can either be set from a resolv.conf, or by calling
133 * For example, with ndots set to 1 (the default) and a search domain list of
371 ndots, timeout, max-timeouts, max-inflight, and attempts
435 Set the 'ndots' parameter for searches.
440 @param ndots the new ndots parameter
442 void evdns_search_ndots_set(const int ndots);
H A Devdns.c2375 /* The ndots option controls how many dots it takes for the resolver */
2386 int ndots; member in struct:search_state
2413 state->ndots = 1;
2475 evdns_search_ndots_set(const int ndots) { argument
2478 global_search_state->ndots = ndots;
2528 if (string_num_dots(name) >= global_search_state->ndots) {
2569 if (string_num_dots(req->search_origname) < req->search_state->ndots) {
2656 if (!strncmp(option, "ndots:", 6)) {
2657 const int ndots local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/resolv/
H A Dres_init.c222 statp->ndots = 1;
535 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
536 i = atoi(cp + sizeof("ndots:") - 1);
538 statp->ndots = i;
540 statp->ndots = RES_MAXNDOTS;
543 printf(";;\tndots=%d\n", statp->ndots);
H A Dres_query.c244 * try 'as is'. The threshold can be set with the "ndots" option.
248 if (dots >= statp->ndots || trailing_dot) {
/netbsd-6-1-5-RELEASE/external/apache2/mDNSResponder/nss/
H A Dnss_mdnsd.c138 short ndots; member in struct:res_conf
960 if (dots >= iter->conf->ndots) {
1296 rc->ndots = 1;
1301 rc->ndots = res->ndots;
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/tests/
H A Ddig8.c574 res.ndots = atoi(argv[0]+2);
578 res.ndots = atoi(*argv);
1216 unsigned ndots = res.ndots; local
1229 res.ndots = ndots;
/netbsd-6-1-5-RELEASE/dist/dhcp/includes/minires/
H A Dresolv.h144 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/dig/include/dig/
H A Ddig.h261 extern int ndots;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/include/lwres/
H A Dlwres.h246 lwres_uint8_t ndots; /*%< set to n in 'options ndots:n' */ member in struct:__anon1488
/netbsd-6-1-5-RELEASE/lib/libc/resolv/
H A Dres_init.c253 statp->ndots = 1;
613 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
614 i = atoi(cp + sizeof("ndots:") - 1);
616 statp->ndots = i;
618 statp->ndots = RES_MAXNDOTS;
621 printf(";;\tndots=%d\n", statp->ndots);
/netbsd-6-1-5-RELEASE/include/
H A Dresolv.h168 unsigned ndots:4; /*%< threshold for initial abs. query */ member in struct:__res_state

Completed in 234 milliseconds

12