Searched refs:try (Results 1 - 25 of 128) sorted by relevance

123456

/freebsd-current/contrib/sendmail/libsm/
H A Dt-match.c17 #define try(str, pat, want) \ macro
33 try("foo", "foo", true);
34 try("foo", "bar", false);
35 try("foo[bar", "foo[bar", true);
36 try("foo[bar]", "foo[bar]", false);
37 try("foob", "foo[bar]", true);
38 try("a-b", "a[]-]b", true);
39 try("abcde", "a*e", true);
40 try("[", "[[]", true);
41 try("
[all...]
/freebsd-current/crypto/heimdal/lib/roken/
H A Dsnprintf-test.c38 try (const char *format, ...) function
47 errx (1, "increase buf and try again");
67 tot += try ("%d", int_values[i]);
68 tot += try ("%x", int_values[i]);
69 tot += try ("%X", int_values[i]);
70 tot += try ("%o", int_values[i]);
71 tot += try ("%#x", int_values[i]);
72 tot += try ("%#X", int_values[i]);
73 tot += try ("%#o", int_values[i]);
74 tot += try ("
[all...]
/freebsd-current/contrib/one-true-awk/testdir/
H A DT.expr15 $1 ~ /try/ { # new test
17 sub(/try /, "")
50 # try program as rest of line
55 # try another program...
57 try { print ($1 == 1) ? "yes" : "no" }
67 try $1 > 0
77 try { print NF }
84 try { print NF, $NF }
91 try { i=1; print ($++$++i) }
97 try {
[all...]
H A DT.utf15 $1 ~ /try/ { # new test
17 sub(/try [a-zA-Z_0-9]+ /, "")
19 printf("try %3d %s\n", nt, prog)
50 # try program as rest of line
55 # try another program...
57 try length { print length($1) }
81 try index { print index($1, $2) }
93 try substr { print substr($0, 2, 3) }
100 try rematch { print $1 ~ $2 }
109 try su
[all...]
H A DT.csv15 $1 ~ /try/ { # new test
17 sub(/try /, "")
50 # try program as rest of line
56 try { for (i=1; i<=NF; i++) printf("[%s]", $i); printf("\n") }
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dwidechars.c46 int try; local
55 for (try = 1; try <= (int) n; ++try) {
59 try,
62 TR(TRACE_BITS, ("...try %d:%d", try, count));
75 try,
83 result = try;
/freebsd-current/contrib/netbsd-tests/lib/libc/regex/
H A Dtest_regex.h34 void try(char *, char *, char *, char *, char *, int);
/freebsd-current/usr.bin/caesar/
H A Dcaesar.c69 int obs[26], try, winner; local
104 for (try = winner = 0; try < 26; ++try) { /* += 13) { */
107 dot += obs[i] * stdf[(i + try) % 26];
109 if (try == 0)
113 winner = try;
/freebsd-current/contrib/cortex-strings/
H A DMakefile.am80 try-none \
81 try-this \
82 try-plain \
83 try-newlib-c \
84 try-bionic-c \
85 try-glibc-c
190 try-bionic-a9 \
191 try-bionic-a15 \
192 try-csl \
193 try
[all...]
/freebsd-current/stand/i386/libi386/
H A Dtime.c72 int same, try; local
74 same = try = 0;
81 } while (++same < 8 && ++try < 1000);
/freebsd-current/usr.sbin/rpc.umntall/
H A Drpc.umntall.c171 struct timeval try; local
174 try.tv_sec = 3;
175 try.tv_usec = 0;
177 &try);
185 (xdrproc_t)xdr_void, (caddr_t)0, try);
199 struct timeval try; local
202 try.tv_sec = 3;
203 try.tv_usec = 0;
205 &try);
212 (xdrproc_t)xdr_void, (caddr_t)0, try);
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dptrace10.sh84 int e, try, limit, r, status;
113 for (try = 1; try <= limit; try++) {
/freebsd-current/stand/common/
H A Dboot.c40 static char *getbootfile(int try);
41 static int loadakernel(int try, int argc, char* argv[]);
43 /* List of kernel names to try (may be overwritten by boot.config) XXX should move from here? */
159 * we haven't tried already, try now.
168 autoboot(-1, NULL); /* try to boot automatically */
186 /* try to get a delay from the environment */
265 * Scrounge for the name of the (try)'th file we will try to boot.
268 getbootfile(int try) argument
281 * Try $bootfile, then try ou
417 loadakernel(int try, int argc, char* argv[]) argument
[all...]
/freebsd-current/sys/contrib/zlib/test/
H A Dinfcover.c508 local int try(char *hex, char *id, int err) function
584 try("0 0 0 0 0", "invalid stored block lengths", 1);
585 try("3 0", "fixed", 0);
586 try("6", "invalid block type", 1);
587 try("1 1 0 fe ff 0", "stored", 0);
588 try("fc 0 0", "too many length or distance symbols", 1);
589 try("4 0 fe ff", "invalid code lengths set", 1);
590 try("4 0 24 49 0", "invalid bit length repeat", 1);
591 try("4 0 24 e9 ff ff", "invalid bit length repeat", 1);
592 try("
[all...]
/freebsd-current/crypto/heimdal/lib/wind/
H A Dtest-map.c62 try(const struct example *c) function
95 failures += try(&cases[i]);
/freebsd-current/contrib/sendmail/src/
H A Dsfsasl.c509 ** We try to get the "raw" file descriptor that TLS uses to
718 int r, rfd, wfd, try, ssl_err; local
723 try = 99;
747 try = tls_retry(so->con, rfd, wfd, tlsstart,
751 if (try > 0)
775 if (errno == EAGAIN && try > 0)
794 if (try == 0 && save_errno == SM_ERR_TIMEOUT)
804 if (save_errno == EAGAIN && try > 0)
811 ERR_error_string(ERR_get_error(), NULL), try,
817 err, r, errno, try, ssl_er
844 int r, rfd, wfd, try, ssl_err; local
[all...]
/freebsd-current/contrib/ntp/
H A Dbuild150 for try in test /bin/test /usr/bin/test ; do
151 case `$try config.status -nt ../configure 2>&1` in
153 TEST="$try"
/freebsd-current/sys/dev/iicbus/sensor/
H A Dds1631.c119 int try = 0; local
134 if (++try > 5) {
146 int err, try = 0; local
162 if (++try > 5) {
174 int err, try = 0; local
190 if (++try > 5) {
/freebsd-current/crypto/openssh/contrib/suse/
H A Drc.sshd67 try-restart)
117 echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
/freebsd-current/sys/contrib/libsodium/src/libsodium/randombytes/
H A Drandombytes.c96 try {
107 try {
/freebsd-current/contrib/bmake/unit-tests/
H A Ddirective-unexport.mk23 # XXX: Now try to unexport all of them. The variables are still exported
H A Dexport.mk20 ${:U!}= exclamation # A direct != would try to run "exclamation"
/freebsd-current/sys/contrib/openzfs/cmd/
H A Ddbufstat.in230 try:
244 try:
344 try:
368 try:
540 try:
606 try:
656 try:
668 try:
/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Dformat_string.h60 try {
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DDynamicLibrary.inc76 // If this is darwin, it has some funky issues, try to solve them here. Some

Completed in 141 milliseconds

123456