| /illumos-gate/usr/src/lib/krb5/kadm5/ |
| H A D | admin.h | 846 void trunc_name(size_t *len, char **dots);
|
| /illumos-gate/usr/src/lib/libresolv2/common/resolv/ |
| H A D | res_init.c | 194 int dots; local 588 dots = 0; 590 dots += (*cp == '.'); 594 if (dots < LOCALDOMAINPARTS) 598 dots--;
|
| H A D | res_query.c | 221 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/lib/libsqlite/tool/ |
| H A D | spaceanal.tcl | 116 set dots [string range {......................................} $len end] 122 puts "$title$dots $value$sp2$extra"
|
| /illumos-gate/usr/src/grub/grub-0.97/docs/ |
| H A D | texinfo.tex | 83 \let\ptexdots=\dots 1078 % @dots{} outputs an ellipsis using the current font. 1082 \def\dots{% 1094 \dots 3226 \definedummyword{dots}% 3365 \def\dots{...}% 3614 % baselineskips increases the chance of the dots lining up from column 3656 % dots pretty far over on the line. Unfortunately, a large 3685 % The following is kludged to not output a line of dots in the index if 4756 \let\dots [all...] |
| /illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
| H A D | snoop_filter.c | 1142 * 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/krb5/kadmin/server/ |
| H A D | misc.h | 76 void trunc_name(size_t *len, char **dots);
|
| /illumos-gate/usr/src/uts/common/fs/nfs/ |
| H A D | nfs4_srv_deleg.c | 84 int dots = 0, i, j, len, k; local 93 dots++; 95 if (dots == 2) {
|
| /illumos-gate/usr/src/tools/scripts/ |
| H A D | flg.flp.sh | 156 # dots/tree loop will go on forever. 166 dots= 169 dots=../$dots 173 echo ${dots}${srcfile##$tree/}
|
| /illumos-gate/usr/src/lib/krb5/kadm5/srv/ |
| H A D | server_misc.c | 205 trunc_name(size_t *len, char **dots) argument 207 *dots = *len > MAXPRINCLEN ? "..." : "";
|
| /illumos-gate/usr/src/lib/libast/common/misc/ |
| H A D | getcwd.c | 84 pushdir(register struct dirlist* d, char* dots, char* path, char* end) 88 if (!(p = newof(0, struct dirlist, 1, 0)) || chdir(dots)) 129 char dots[PATH_MAX]; 145 if (fs3d(FS3D_TEST) && (namlen = mount(".", dots, FS3D_GET|FS3D_VIEW|FS3D_SIZE(sizeof(dots)), NiL)) > 1 && namlen < sizeof(dots)) 147 p = dots; 180 d = dots; 189 if ((d - dots) > (PATH_MAX - 4)) 191 if (!(dirstk = pushdir(dirstk, dots, [all...] |
| /illumos-gate/usr/src/lib/libast/common/path/ |
| H A D | pathcanon.c | 56 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 D | getpreroot.c | 78 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/cmd/cmd-inet/usr.lib/mdnsd/ |
| H A D | mDNS.c | 9667 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...] |