Home | History | Annotate | Download | only in resolv

Lines Matching refs:domain

128 	   const char *name,	/* domain name */
222 const char *name, /* domain name */
227 const char *cp, * const *domain;
275 for (domain = (const char * const *)statp->dnsrch;
276 *domain && !done;
277 domain++) {
280 if (domain[0][0] == '\0' ||
281 (domain[0][0] == '.' && domain[0][1] == '\0'))
284 ret = res_nquerydomain(statp, name, *domain,
292 * If name isn't found in this domain,
297 * from finding this entry higher in the domain.
364 * Perform a call on res_query on the concatenation of name and domain,
365 * removing a trailing dot from name if domain is NULL.
370 const char *domain,
382 name, domain?domain:"<Nil>", class, type);
384 if (domain == NULL) {
402 d = strlen(domain);
407 sprintf(nbuf, "%s.%s", name, domain);