Home | History | Annotate | Download | only in resolv

Lines Matching refs:domain

129 	   const char *name,	/* domain name */
223 const char *name, /* domain name */
228 const char *cp, * const *domain;
278 * the domain stuff is tried. Will have a better
285 for (domain = (const char * const *)statp->dnsrch;
286 *domain && !done;
287 domain++) {
290 if (domain[0][0] == '\0' ||
291 (domain[0][0] == '.' && domain[0][1] == '\0'))
294 ret = res_nquerydomain(statp, name, *domain,
302 * If name isn't found in this domain,
307 * from finding this entry higher in the domain.
374 * Perform a call on res_query on the concatenation of name and domain,
375 * removing a trailing dot from name if domain is NULL.
380 const char *domain,
392 name, domain?domain:"<Nil>", class, type);
394 if (domain == NULL) {
412 d = strlen(domain);
417 sprintf(nbuf, "%s.%s", name, domain);