Home | History | Annotate | Download | only in resolv

Lines Matching full:dots

230 	u_int dots;
239 dots = 0;
241 dots += (*cp == '.');
246 /* If there aren't any dots, it could be a user-level alias. */
247 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
251 * If there are enough dots in the name, let's just give it a
256 if (dots >= statp->ndots || trailing_dot) {
271 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
272 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
337 * unless RES_NOTLDQUERY is set and there were no dots.
339 if ((dots || !searched || (statp->options & RES_NOTLDQUERY) == 0U) &&