| /freebsd/lib/libc/resolv/ |
| H A D | res_query.c | 211 u_int dots; in res_nsearch() local 219 dots = 0; in res_nsearch() 221 dots += (*cp == '.'); in res_nsearch() 227 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL) in res_nsearch() 236 if (dots >= statp->ndots || trailing_dot) { in res_nsearch() 266 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) || in res_nsearch() 267 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) { in res_nsearch() 366 if ((dots || !searched || (statp->options & RES_NOTLDQUERY) == 0U) && in res_nsearch()
|
| H A D | res_init.c | 165 int dots; in __res_vinit() local 238 dots = 0; in __res_vinit() 240 dots += (*cp == '.'); in __res_vinit() 244 if (dots < LOCALDOMAINPARTS) in __res_vinit() 248 dots--; in __res_vinit()
|
| /freebsd/usr.sbin/bsdconfig/networking/include/ |
| H A D | messages.subr | 51 …="ERROR! One or more individual labels within the hostname\n(separated by dots) contains one or mo… 52 …="ERROR! One or more individual labels within the hostname\n(separated by dots) exceeds the maximu… 53 …="ERROR! One or more individual labels within the hostname\n(separated by dots) are null.\n\nInval… 54 …="ERROR! One or more individual labels within the hostname\n(separated by dots) starts or ends wit… 57 …ROR! One or more individual octets within the IPv4 address\n(separated by dots) contains one or mo… 58 …ROR! One or more individual octets within the IPv4 address\n(separated by dots) exceeds the maximu… 59 …ROR! One or more individual octets within the IPv4 address\n(separated by dots) are null and/or mi… 60 …o few (less than\nfour) or too many (more than four) octets, separated by dots.\n\nInvalid IP Addr… 61 …RROR! One or more individual fields within the subnet mask\n(separated by dots) contains one or mo… 62 …RROR! One or more individual fields within the subnet mask\n(separated by dots) exceeds the maximu… [all …]
|
| /freebsd/contrib/ofed/infiniband-diags/src/ |
| H A D | smpquery.c | 85 char dots[128]; in node_desc() local 101 memset(dots, '.', 32 - l); in node_desc() 102 dots[32 - l] = '\0'; in node_desc() 104 dots[0] = '.'; in node_desc() 105 dots[1] = '\0'; in node_desc() 108 printf("Node Description:%s%s\n", dots, nodename); in node_desc()
|
| /freebsd/stand/forth/ |
| H A D | delay.4th | 39 variable delay_showdots \ whether continually print dots while waiting 78 \ throw some dots up on the screen if desired 80 ." ." \ dots visually aid in the perception of time 105 \ if we were throwing up dots, throw up a line-break
|
| /freebsd/contrib/netbsd-tests/ipf/regress/ |
| H A D | i1 | 18 pass out on longNICname0 from test.host.dots to test\.host.dots
|
| H A D | in2 | 69 rdr le0 0/0 -> test.host.dots 70 rdr le0 any -> test.host.dots,test.host.dots
|
| H A D | in2_6 | 69 rdr le0 inet6 0/0 -> test.host.dots 70 rdr le0 inet6 any -> test.host.dots,test.host.dots
|
| /freebsd/contrib/sendmail/libsm/ |
| H A D | mpeix.c | 265 int dots = 0; local 284 dots++; 292 if (dots != 1)
|
| /freebsd/contrib/sendmail/cf/mailer/ |
| H A D | uucp.m4 | 40 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 59 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 74 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 109 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
|
| /freebsd/contrib/netbsd-tests/fs/tmpfs/ |
| H A D | t_readdir.sh | 32 atf_test_case dots 112 atf_add_test_case dots
|
| H A D | t_rmdir.sh | 96 atf_test_case dots 199 atf_add_test_case dots
|
| H A D | t_rename.sh | 33 atf_test_case dots 269 atf_add_test_case dots
|
| /freebsd/crypto/krb5/src/kadmin/server/ |
| H A D | misc.c | 127 trunc_name(size_t *len, char **dots) in trunc_name() argument 129 *dots = *len > MAXPRINCLEN ? "..." : ""; in trunc_name()
|
| H A D | misc.h | 28 void trunc_name(size_t *len, char **dots);
|
| /freebsd/usr.sbin/bhyve/amd64/ |
| H A D | vga.c | 258 int dots, offset, bit, font_offset; in vga_get_text_pixel() local 262 dots = sc->vga_seq.seq_cm_dots; in vga_get_text_pixel() 265 offset += (y / 16 * sc->gc_width / dots) * 2 + (x / dots) * 2; in vga_get_text_pixel() 267 bit = 7 - (x % dots > 7 ? 7 : x % dots); in vga_get_text_pixel()
|
| /freebsd/contrib/ofed/libibmad/ |
| H A D | fields.c | 1315 char dots[128]; in _mad_dump_field() local 1326 memset(dots, '.', 32 - l); in _mad_dump_field() 1327 dots[32 - l] = 0; in _mad_dump_field() 1330 n = snprintf(buf, bufsz, "%s:%s", name, dots); in _mad_dump_field()
|
| /freebsd/lib/libc/net/ |
| H A D | getaddrinfo.c | 2871 u_int dots; in res_searchN() local 2880 dots = 0; in res_searchN() 2882 dots += (*cp == '.'); in res_searchN() 2890 if (!dots && in res_searchN() 2900 if (dots >= res->ndots || trailing_dot) { in res_searchN() 2925 if ((!dots && (res->options & RES_DEFNAMES)) || in res_searchN() 2926 (dots && !trailing_dot && (res->options & RES_DNSRCH))) { in res_searchN() 3000 if ((dots || !searched || !(res->options & RES_NOTLDQUERY)) && in res_searchN()
|
| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | v3_utl.c | 740 int dots = 0; in valid_star() local 755 if (star != NULL || (state & LABEL_IDNA) != 0 || dots) in valid_star() 777 ++dots; in valid_star() 792 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2) in valid_star()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | digital | 65 0 string \377\377\174 ddis/dots archive
|
| /freebsd/usr.bin/bmake/unit-tests/ |
| H A D | Makefile | 314 TESTS+= sh-dots 653 SED_CMDS.sh-dots= -e 's,^.*\.\.\.:.*,<not found: ...>,' 655 SED_CMDS.sh-dots+= -e 's,^make: exec(\(.*\)): .*$$,<not found: \1>,' 656 SED_CMDS.sh-dots+= -e 's,^\(\*\*\* Error code \)[1-9][0-9]*,\1<nonzero>,'
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | Makefile | 311 TESTS+= sh-dots 650 SED_CMDS.sh-dots= -e 's,^.*\.\.\.:.*,<not found: ...>,' 652 SED_CMDS.sh-dots+= -e 's,^make: exec(\(.*\)): .*$$,<not found: \1>,' 653 SED_CMDS.sh-dots+= -e 's,^\(\*\*\* Error code \)[1-9][0-9]*,\1<nonzero>,'
|
| /freebsd/sbin/ipfw/ |
| H A D | dummynet.c | 189 int i, dots = 0; in time_to_us() local 197 if (dots) in time_to_us() 200 dots++; in time_to_us()
|
| /freebsd/contrib/sendmail/cf/cf/ |
| H A D | submit.cf | 181 # ignore dots as terminators in incoming messages? 994 R<?> $* < @ $* . > <?> $1 < @ $2 > strip trailing dots 1076 R<?> $* < @ $+ . > <?> $1 < @ $2 > strip trailing dots 1197 R$* . $1 strip trailing dots
|
| /freebsd/tests/sys/fs/fusefs/ |
| H A D | readdir.cc | 67 TEST_F(Readdir, dots) in TEST_F() argument
|