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

/freebsd-10.1-release/contrib/ntp/sntp/libevent/include/event2/
H A Ddns_compat.h243 ndots, timeout, max-timeouts, max-inflight, and attempts
304 Set the 'ndots' parameter for searches.
313 @param ndots the new ndots parameter
315 void evdns_search_ndots_set(const int ndots);
H A Ddns.h101 * number is greater than the ndots setting then the names is first tried
104 * The ndots setting can either be set from a resolv.conf, or by calling
107 * For example, with ndots set to 1 (the default) and a search domain list of
425 ndots, timeout, max-timeouts, max-inflight, attempts, randomize-case,
515 Set the 'ndots' parameter for searches.
520 @param ndots the new ndots parameter
523 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
/freebsd-10.1-release/contrib/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++)
/freebsd-10.1-release/lib/libc/resolv/
H A Dres_init.c226 statp->ndots = 1;
598 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
599 i = atoi(cp + sizeof("ndots:") - 1);
601 statp->ndots = i;
603 statp->ndots = RES_MAXNDOTS;
606 printf(";;\tndots=%d\n", statp->ndots);
H A Dres_query.c241 * try 'as is'. The threshold can be set with the "ndots" option.
245 if (dots >= statp->ndots || trailing_dot) {
/freebsd-10.1-release/contrib/ntp/sntp/libevent/
H A Devdns.c3038 /* The ndots option controls how many dots it takes for the resolver */
3049 int ndots; member in struct:search_state
3074 state->ndots = 1;
3152 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { argument
3156 base->global_search_state->ndots = ndots;
3160 evdns_search_ndots_set(const int ndots) { argument
3161 evdns_base_search_ndots_set(current_base, ndots);
3216 if (string_num_dots(name) >= base->global_search_state->ndots) {
3267 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) {
3449 const int ndots = strtoint(val); local
[all...]
/freebsd-10.1-release/crypto/openssh/
H A Dssh.c326 int i, ndots; local
342 ndots = 0;
345 ndots++;
347 if (ndots > options.canonicalize_max_dots) {
/freebsd-10.1-release/include/
H A Dresolv.h167 unsigned ndots:4; /*%< threshold for initial abs. query */ member in struct:__res_state
/freebsd-10.1-release/contrib/ldns-host/
H A Dldns-host.c40 ndots(const char *name) { function
464 "Usage: host [-aCdilrsTvw46] [-c class] [-N ndots] [-R number]\n"
883 (res, safe_str2rdf_dname(o_name), ndots(o_name) >= o_ndots);
/freebsd-10.1-release/lib/libc/net/
H A Dgetaddrinfo.c2724 * try 'as is'. The threshold can be set with the "ndots" option.
2728 if (dots >= res->ndots || trailing_dot) {

Completed in 199 milliseconds