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

12

/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/lwresd/lwresd1/
H A Dresolv.conf21 ndots 1
H A Dlwresd.conf33 ndots 1;
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/lwresd/
H A Dresolv.conf21 ndots 1
/macosx-10.10.1/bind9-45.101/bind9/bin/named/include/named/
H A Dlwsearch.h54 unsigned int ndots; member in struct:ns_lwsearchctx
86 dns_name_t *name, unsigned int ndots);
H A Dlwresd.h38 unsigned int ndots; member in struct:ns_lwresd
/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_vhost_alias.c259 int ndots; local
270 ndots = 0;
271 dots[ndots++] = name-1; /* slightly naughty */
273 if (*p == '.' && ndots < MAXDOTS) {
274 dots[ndots++] = p;
277 dots[ndots] = p;
325 end = dots[ndots]; /* ptr to the character after the last one */
327 if (N > ndots) {
339 start = dots[ndots-N]+1;
341 end = dots[ndots
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlwsearch.c135 dns_name_t *name, unsigned int ndots)
142 sctx->ndots = ndots;
149 if (dns_name_countlabels(name) > ndots)
134 ns_lwsearchctx_init(ns_lwsearchctx_t *sctx, ns_lwsearchlist_t *list, dns_name_t *name, unsigned int ndots) argument
H A Dlwresd.c234 * Build the ndots line
236 if (lwc->ndots != 1) {
238 snprintf(str, sizeof(str), "%u", lwc->ndots);
312 (void)cfg_map_get(lwres, "ndots", &obj);
314 lwresd->ndots = cfg_obj_asuint32(obj);
316 lwresd->ndots = 1;
H A Dlwdgabn.c628 cm->listener->manager->ndots);
H A Dlwdgrbn.c481 cm->listener->manager->ndots);
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dlwconfig.c238 confdata->ndots = 1;
290 confdata->ndots = 1;
532 long ndots; local
549 } else if (strncmp("ndots:", word, 6) == 0) {
550 ndots = strtol(word + 6, &p, 10);
553 if (ndots < 0 || ndots > 0xff) /* Out of range. */
555 confdata->ndots = (lwres_uint8_t)ndots;
714 if (confdata->ndots >
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/irs/
H A Dresconf.c116 /*%< set to n in 'options ndots:n' */
117 isc_uint8_t ndots; member in struct:irs_resconf
436 long ndots; local
447 } else if (strncmp("ndots:", word, 6) == 0) {
448 ndots = strtol(word + 6, &p, 10);
451 if (ndots < 0 || ndots > 0xff) /* Out of range. */
453 conf->ndots = (isc_uint8_t)ndots;
505 conf->ndots
[all...]
/macosx-10.10.1/groff-38/groff/src/preproc/pic/
H A Dcommon.cpp66 int ndots; local
70 ndots = 2;
73 ndots = 4*int(M_PI/(2.0*gap_angle));
74 gap_angle = (M_PI*2.0)/ndots;
77 for (int i = 0; i < ndots; i++, ang += gap_angle)
198 int ndots = 4 * int(le / lt.dash_width / 4 + 0.5); local
199 if (ndots < 4)
200 ndots = 4;
205 for (int i = 1; i <= ndots; i++) {
208 double ld = i * le / ndots;
297 int ndots = int(total_angle/(lt.dash_width/rad) + .5); local
[all...]
H A Dtroff.cpp98 int ndots = int(dist/lt.dash_width + .5); local
99 if (ndots == 0)
102 vec /= double(ndots);
103 for (int j = 0; j <= ndots; j++)
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dresolv.vim48 syn match resolvOption /\<\%(ndots\|timeout\|attempts\):\d\+\>/ contained contains=resolvOperator nextgroup=resolvOption skipwhite
/macosx-10.10.1/libresolv-57/
H A Dres_init.c162 res->ndots = 1;
398 else if (!strcmp(key, "ndots"))
403 res->ndots = ival;
584 statp->ndots = 1;
1044 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
1045 i = atoi(cp + sizeof("ndots:") - 1);
1047 statp->ndots = i;
1049 statp->ndots = RES_MAXNDOTS;
1052 printf(";;\tndots=%d\n", statp->ndots);
[all...]
H A Ddns.c388 if (!strncmp(x, "ndots:", 6))
390 _pdns_build(pdns, "ndots", x+6);
1527 int i, n, ndots, status; local
1549 /* ndots is the threshold for trying a qualified name "as is" */
1550 ndots = 1;
1552 if ((primary != NULL) && (primary->res != NULL)) ndots = primary->res->ndots;
1571 * If n >= ndots, or it's a FQDN, or if it's a PTR query,
1574 if ((n >= ndots) || (fqdn == 1) || (type == ns_t_ptr))
H A Dresolv.h195 unsigned ndots:4; /* threshold for initial abs. query */ member in struct:__res_state
H A Dres_query.c796 * try 'as is'. The threshold can be set with the "ndots" option.
800 if (dots >= statp->ndots || trailing_dot)
927 * try 'as is'. The threshold can be set with the "ndots" option.
931 if (dots >= statp->ndots || trailing_dot)
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dresolv.rb315 # Hash:: Must contain :nameserver, :search and :ndots keys.
331 # :ndots => 1)
899 ndots = 1
921 ndots = $1.to_i
927 return { :nameserver => nameserver, :search => search, :ndots => ndots }
950 @ndots = 1
974 @ndots = config_hash[:ndots] if config_hash.include? :ndots
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/dig/include/dig/
H A Ddig.h259 extern int ndots;
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/include/lwres/
H A Dlwres.h244 lwres_uint8_t ndots; /*%< set to n in 'options ndots:n' */ member in struct:__anon6572
/macosx-10.10.1/bind9-45.101/bind9/bin/dig/
H A Dhost.c150 "Usage: host [-aCdlriTwv] [-c class] [-N ndots] [-t type] [-W time]\n"
798 ndots = atoi(isc_commandline_argument);
H A Ddighost.c141 int ndots = -1; variable
1236 if (ndots == -1) {
1237 ndots = lwconf->ndots;
1238 debug("ndots is %d.", ndots);
2044 if ((count_dots(utf8_textname) >= ndots) || !usesearch) {
2053 if ((count_dots(lookup->textname) >= ndots) || !usesearch) {
/macosx-10.10.1/configd-699.1.5/Plugins/IPMonitor/
H A Ddns-configuration.c624 const int ndots = 1; local
657 } while (++i <= (domain_parts - ndots));

Completed in 216 milliseconds

12