Searched defs:dots (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathcanon.c56 register int dots; local
66 dots = loop = 0;
80 dots++;
87 switch (dots)
151 dots = pathgetlink(phys, buf, sizeof(buf));
153 if (dots > 0)
156 strcpy(buf + dots, s - (*s != 0));
161 else if (dots < 0 && errno == ENOENT)
170 dots = 4;
174 if (dots >
[all...]
/illumos-gate/usr/src/lib/libast/common/preroot/
H A Dgetpreroot.c78 char dots[PATH_MAX]; local
89 d = dots;
98 if ((d - dots) > (PATH_MAX - 4)) ERROR(ERANGE);
102 if (!(dirp = opendir(dots))) ERROR(errno);
106 if (stat(dots, par)) ERROR(errno);
143 if ((d - dots) > (PATH_MAX - 1 - namlen)) ERROR(ERANGE);
145 if (stat(dots, &tstst)) ERROR(errno);
/illumos-gate/usr/src/lib/krb5/kadm5/srv/
H A Dserver_misc.c205 trunc_name(size_t *len, char **dots) argument
207 *dots = *len > MAXPRINCLEN ? "..." : "";
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_init.c194 int dots; local
588 dots = 0;
590 dots += (*cp == '.');
594 if (dots < LOCALDOMAINPARTS)
598 dots--;
H A Dres_query.c221 u_int dots; local
229 dots = 0;
231 dots += (*cp == '.');
236 /* If there aren't any dots, it could be a user-level alias. */
237 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
241 * If there are enough dots in the name, let's just give it a
246 if (dots >= statp->ndots || trailing_dot) {
261 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
262 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
327 * unless RES_NOTLDQUERY is set and there were no dots
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_deleg.c84 int dots = 0, i, j, len, k; local
93 dots++;
95 if (dots == 2) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_filter.c1142 * separated by dots e.g. 109.104.40.13
1168 int base, colons, dots, alphas, double_colon; local
1220 dots = alphas = 0;
1223 dots++;
1233 } else if (dots) {
1236 if (dots == 1 && size == size1) {
1239 if (dots != 3 || size != size1) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DmDNS.c9667 int dots = 0; local
9676 if (val > 255 || dots >= 3)
9678 LogMsg("GetValueForIPv4Addr: something wrong ptr(%p) %c, limit %p, dots %d", ptr, *ptr, limit, dots);
9681 v4->b[dots++] = val;
9687 if (*ptr == 0 && ptr == limit - 1 && dots == 3)
9689 v4->b[dots] = val;
9692 else { LogMsg("GetValueForIPv4Addr: something wrong ptr(%p) %c, limit %p, dots %d", ptr, *ptr, limit, dots); return mDNSNULL; }
9695 if (dots !
[all...]

Completed in 110 milliseconds