Searched refs:FAIL (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dregex.c24 #define FAIL(x) do { reason = (x); goto error; } while(0) macro
26 #define FAIL(x) goto error macro
65 FAIL("empty string");
78 FAIL("bad back reference");
83 FAIL("escaped end-of-string");
102 FAIL("no atom");
104 FAIL("was multiple");
129 FAIL("empty alternative");
138 FAIL("no atom");
154 FAIL("wa
[all...]
/freebsd-9.3-release/contrib/binutils/ld/
H A Dldmisc.h38 #define FAIL() \ macro
/freebsd-9.3-release/tools/regression/security/cap_test/
H A Dcap_test_capmode.c62 FAIL("capmode: %s failed with ECAPMODE", #syscall); \
164 FAIL("capmode:waitpid");
166 FAIL("capmode:waitpid succeeded");
169 FAIL("capmode:fork");
172 FAIL("test_sycalls:getlogin %d", errno);
176 FAIL("capmode:getsockname");
185 FAIL("capmode:pipe");
194 FAIL("capmode:no sysarch() test for current architecture");
H A Dcap_test.h50 #define FAIL(...) do { \ macro
71 FAIL("%s() at line %d: %s failed", \
79 FAIL("%s() at line %d: %s", \
91 FAIL("%s() at line %d: %s", \
H A Dcap_test_pdkill.c84 FAIL("pdgetpid");
90 FAIL("pdkill");
/freebsd-9.3-release/contrib/ncurses/progs/
H A Ddump_entry.h78 #define FAIL -1 macro
/freebsd-9.3-release/tools/regression/file/flock/
H A Dflock.c119 #define FAIL(test) \ macro
122 printf("FAIL (%s)\n", #test); \
151 FAIL(fl1.l_start != fl2.l_start);
152 FAIL(fl1.l_len != fl2.l_len);
153 FAIL(fl1.l_pid != fl2.l_pid);
154 FAIL(fl1.l_type != F_UNLCK);
155 FAIL(fl1.l_whence != fl2.l_whence);
157 FAIL(fl1.l_sysid != fl2.l_sysid);
225 FAIL(res == 0);
226 FAIL(errn
[all...]
/freebsd-9.3-release/contrib/dtc/
H A Dchecks.c107 #define FAIL(c, ...) \ macro
190 FAIL(c, "\"%s\" property in %s is not a string",
207 FAIL(c, "\"%s\" property in %s is not a single cell",
227 FAIL(c, "Duplicate node name %s",
240 FAIL(c, "Duplicate property name %s in %s",
256 FAIL(c, "Bad character '%c' in node %s",
265 FAIL(c, "Node %s has multiple '@' characters in name",
276 FAIL(c, "Bad character '%c' in property name \"%s\", node %s",
293 FAIL(c, "%s has bad length (%d) %s property",
305 FAIL(
[all...]
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-score.c40 #define FAIL 0x80000000 macro
805 retval = (int) FAIL;
824 return (int) FAIL;
840 return (int) FAIL;
849 int reg = (int) FAIL;
852 if ((reg = score_reg_parse (str, all_reg_maps[reg_type].htab)) != (int) FAIL)
897 return (int) FAIL;
904 return (int) FAIL;
908 return comma ? SUCCESS : (int) FAIL;
916 if (reg_required_here (&str, 20, REG_TYPE_SCORE) == (int) FAIL
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_server/
H A Deap_server_tnc.c26 FAIL enumerator in enum:eap_tnc_data::eap_tnc_state
63 case FAIL:
64 return "FAIL";
120 eap_tnc_set_state(data, FAIL);
188 eap_tnc_set_state(data, FAIL);
192 eap_tnc_set_state(data, FAIL);
267 eap_tnc_set_state(data, FAIL);
275 if (data->state == FAIL)
321 case FAIL:
395 eap_tnc_set_state(data, FAIL);
[all...]
H A Deap_server_ikev2.c25 enum { MSG, FRAG_ACK, WAIT_FRAG_ACK, DONE, FAIL } state; enumerator in enum:eap_ikev2_data::__anon4390
71 case FAIL:
72 return "FAIL";
287 eap_ikev2_state(data, FAIL);
371 eap_ikev2_state(data, FAIL);
378 eap_ikev2_state(data, FAIL);
388 eap_ikev2_state(data, FAIL);
399 eap_ikev2_state(data, FAIL);
408 eap_ikev2_state(data, FAIL);
415 eap_ikev2_state(data, FAIL);
[all...]
H A Deap_server_wsc.c25 enum { START, MESG, FRAG_ACK, WAIT_FRAG_ACK, DONE, FAIL } state; enumerator in enum:eap_wsc_data::__anon4407
51 case FAIL:
52 return "FAIL";
295 eap_wsc_state(data, FAIL);
301 eap_wsc_state(data, FAIL);
358 eap_wsc_state(data, FAIL);
395 eap_wsc_state(data, FAIL);
407 eap_wsc_state(data, FAIL);
413 eap_wsc_state(data, FAIL);
421 eap_wsc_state(data, FAIL);
[all...]
/freebsd-9.3-release/usr.sbin/pkg_install/lib/
H A Dpen.c51 else if ((cp = getenv("PKG_TMPDIR")) != NULL && stat(cp, &sb) != FAIL && (min_free(cp) >= sz))
53 else if ((cp = getenv("TMPDIR")) != NULL && stat(cp, &sb) != FAIL && (min_free(cp) >= sz))
55 else if (stat("/var/tmp", &sb) != FAIL && min_free("/var/tmp") >= sz)
57 else if (stat("/tmp", &sb) != FAIL && min_free("/tmp") >= sz)
140 if (chdir(pen) == FAIL) {
164 if (chdir(PenLocation) == FAIL) {
H A Dfile.c49 if (lstat(fname, &sb) != FAIL && S_ISDIR(sb.st_mode))
51 else if (lstat(strconcat(fname, "/."), &sb) != FAIL && S_ISDIR(sb.st_mode))
88 if (stat(fname, &sb) != FAIL && S_ISREG(sb.st_mode))
102 if (stat(fname, &sb) != FAIL && S_ISREG(sb.st_mode)) {
114 if (lstat(fname, &sb) != FAIL && S_ISLNK(sb.st_mode))
189 if (stat(fname, &sb) == FAIL) {
196 if (fd == FAIL) {
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dheim_err.et36 error_code FAIL, "non-recoverable failure in name resolution"
/freebsd-9.3-release/usr.sbin/pkg_install/add/
H A Dfutil.c49 return FAIL;
56 return FAIL;
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dcpu-arm.c295 goto FAIL;
299 goto FAIL;
333 goto FAIL;
340 FAIL:
392 goto FAIL;
396 goto FAIL;
406 FAIL:
/freebsd-9.3-release/contrib/less/
H A Dregexp.c146 #define FAIL(m) { regerror(m); return(NULL); } macro
220 FAIL("NULL argument");
233 FAIL("regexp too big");
238 FAIL("out of space");
312 FAIL("too many ()");
351 FAIL("unmatched ()");
354 FAIL("unmatched ()");
356 FAIL("junk on end"); /* "Can't happen". */
427 FAIL("*+ operand could be empty");
458 FAIL("neste
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/unity/auto/
H A Dcolour_reporter.rb25 when /(?:FAIL|ERROR)/
/freebsd-9.3-release/tools/regression/usr.bin/make/
H A Dcommon.sh35 FAIL=
43 FAIL=yes
49 if [ ! -z "${FAIL}" ] ; then
363 return 1 # FAIL
382 FAIL=
423 FAIL=
/freebsd-9.3-release/contrib/gdb/
H A Ddjunpack.bat42 echo FAIL: Sed is not available.
45 echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
48 echo FAIL: the file %1 does not seem to exist.
/freebsd-9.3-release/sbin/restore/
H A Dutilities.c210 return (FAIL);
231 return (FAIL);
236 return (FAIL);
253 return (FAIL);
396 return (FAIL);
400 return (FAIL);
/freebsd-9.3-release/tools/regression/sockets/sendfile/
H A Dsendfile.c54 #define FAIL(msg) {printf("# %s\n", msg); \ macro
105 FAIL("magic number not found in header")
179 FAIL("receive length mismatch")
334 FAIL("offset != length")
437 FAIL("usage: sendfile [path]");
450 FAIL("len != 0")
/freebsd-9.3-release/usr.sbin/pkg_install/delete/
H A Dperform.c174 if (chdir(LogDir) == FAIL) {
315 if (chdir(home) == FAIL) {
325 if (delete_package(FALSE, CleanDirs, &Plist) == FAIL)
330 if (chdir(LogDir) == FAIL) {
350 if (chdir(home) == FAIL) {
411 if (fchmod(s, 0644) == FAIL) {
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dtinytest.c76 enum outcome { SKIP=2, OK=1, FAIL=0 }; enumerator in enum:outcome
99 return FAIL;
110 outcome = FAIL;
169 return FAIL;
198 return FAIL; /* unreachable */
215 return b[0]=='Y' ? OK : (b[0]=='S' ? SKIP : FAIL);

Completed in 305 milliseconds

123