Symbol: REQUIRE
lib/libc/regex/regcomp.c
1023
(void)REQUIRE(bc->nchain == 0, REG_BADRPT);
lib/libc/regex/regcomp.c
1057
(void)REQUIRE(count <= count2, REG_BADBR);
lib/libc/regex/regcomp.c
1066
(void)REQUIRE(MORE(), REG_EBRACE);
lib/libc/regex/regcomp.c
1090
(void)REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
lib/libc/regex/regcomp.c
1205
(void)REQUIRE(MORE(), REG_EBRACK);
lib/libc/regex/regcomp.c
1207
(void)REQUIRE(c != '-' && c != ']', REG_ECTYPE);
lib/libc/regex/regcomp.c
1209
(void)REQUIRE(MORE(), REG_EBRACK);
lib/libc/regex/regcomp.c
1210
(void)REQUIRE(EATTWO(':', ']'), REG_ECTYPE);
lib/libc/regex/regcomp.c
1214
(void)REQUIRE(MORE(), REG_EBRACK);
lib/libc/regex/regcomp.c
1216
(void)REQUIRE(c != '-' && c != ']', REG_ECOLLATE);
lib/libc/regex/regcomp.c
1218
(void)REQUIRE(MORE(), REG_EBRACK);
lib/libc/regex/regcomp.c
1219
(void)REQUIRE(EATTWO('=', ']'), REG_ECOLLATE);
lib/libc/regex/regcomp.c
1240
(void)REQUIRE(start <= finish, REG_ERANGE);
lib/libc/regex/regcomp.c
1243
(void)REQUIRE(p_range_cmp(start, finish) <= 0, REG_ERANGE);
lib/libc/regex/regcomp.c
1360
(void)REQUIRE(MORE(), REG_EBRACK);
lib/libc/regex/regcomp.c
1366
(void)REQUIRE(EATTWO('.', ']'), REG_ECOLLATE);
lib/libc/regex/regcomp.c
211
#define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
lib/libc/regex/regcomp.c
212
#define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
lib/libc/regex/regcomp.c
213
#define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
lib/libc/regex/regcomp.c
467
(void)REQUIRE(MORE(), REG_EPAREN);
lib/libc/regex/regcomp.c
524
(void)REQUIRE(MORE(), REG_EESCAPE);
lib/libc/regex/regcomp.c
631
(void)REQUIRE(MORE2() && \
lib/libc/regex/regcomp.c
635
(void)REQUIRE(!wascaret, REG_BADRPT);
lib/libc/regex/regcomp.c
662
(void)REQUIRE(count <= count2, REG_BADBR);
lib/libc/regex/regcomp.c
671
(void)REQUIRE(MORE(), REG_EBRACE);
lib/libc/regex/regcomp.c
694
(void)REQUIRE(MORE(), REG_EMPTY);
lib/libc/regex/regcomp.c
856
(void) REQUIRE(p->gnuext || HERE() != bc.start, REG_EMPTY);
lib/libc/regex/regcomp.c
903
(void)REQUIRE(MORE(), REG_EESCAPE);
lib/libc/regex/regcomp.c
989
(void)REQUIRE(EATTWO('\\', ')'), REG_EPAREN);
tests/compat/linux/h_inotify_directory.c
100
REQUIRE(strcmp(cur_ie->name, target_events[i].name) == 0);
tests/compat/linux/h_inotify_directory.c
102
REQUIRE(cur_ie->len == 0);
tests/compat/linux/h_inotify_directory.c
90
REQUIRE(cur_ie->wd == wd);
tests/compat/linux/h_inotify_directory.c
91
REQUIRE(cur_ie->mask == target_events[i].mask);
tests/compat/linux/h_inotify_directory.c
94
REQUIRE(cur_ie->cookie != 0);
tests/compat/linux/h_inotify_directory.c
96
REQUIRE(cur_ie->cookie == 0);
tests/compat/linux/h_inotify_directory.c
99
REQUIRE(cur_ie->len > strlen(target_events[i].name));
tests/compat/linux/h_inotify_init.c
48
REQUIRE(fcntl(fd, LINUX_F_GETFD) == 0);
tests/compat/linux/h_inotify_init.c
49
REQUIRE((fcntl(fd, LINUX_F_GETFL) & LINUX_O_NONBLOCK) == 0);
tests/compat/linux/h_inotify_init.c
54
REQUIRE(fcntl(fd, LINUX_F_GETFD) == 0);
tests/compat/linux/h_inotify_init.c
55
REQUIRE((fcntl(fd, LINUX_F_GETFL) & LINUX_O_NONBLOCK) != 0);
tests/compat/linux/h_inotify_init.c
60
REQUIRE(fcntl(fd, LINUX_F_GETFD) != 0);
tests/compat/linux/h_inotify_init.c
61
REQUIRE((fcntl(fd, LINUX_F_GETFL) & LINUX_O_NONBLOCK) == 0);
tests/compat/linux/h_inotify_single_file.c
72
REQUIRE(events[i].wd == wd && events[i].cookie == 0
tests/compat/linux/h_inotify_single_file.c
75
REQUIRE(events[0].mask == LINUX_IN_OPEN);
tests/compat/linux/h_inotify_single_file.c
76
REQUIRE(events[1].mask == LINUX_IN_MODIFY);
tests/compat/linux/h_inotify_single_file.c
77
REQUIRE(events[2].mask == LINUX_IN_ACCESS);
tests/compat/linux/h_inotify_single_file.c
78
REQUIRE(events[3].mask == LINUX_IN_CLOSE_WRITE);
tests/compat/linux/h_inotify_single_file.c
79
REQUIRE(events[4].mask == LINUX_IN_OPEN);
tests/compat/linux/h_inotify_single_file.c
80
REQUIRE(events[5].mask == LINUX_IN_CLOSE_NOWRITE);
tests/compat/linux/h_inotify_single_file.c
81
REQUIRE(events[6].mask == LINUX_IN_MOVE_SELF);
tests/compat/linux/h_inotify_single_file.c
82
REQUIRE(events[7].mask == LINUX_IN_ATTRIB);
tests/compat/linux/h_inotify_single_file.c
83
REQUIRE(events[8].mask == LINUX_IN_DELETE_SELF);
tests/compat/linux/h_inotify_single_file.c
84
REQUIRE(events[9].mask == LINUX_IN_IGNORED);
tests/compat/linux/h_inotify_watch_change.c
59
REQUIRE(nread == sizeof(events[0]));
tests/compat/linux/h_inotify_watch_change.c
60
REQUIRE(events[0].mask == LINUX_IN_CLOSE_NOWRITE);
tests/compat/linux/h_inotify_watch_change.c
71
REQUIRE(nread == sizeof(events[0]));
tests/compat/linux/h_inotify_watch_change.c
72
REQUIRE(events[0].mask == LINUX_IN_OPEN);
tests/compat/linux/h_inotify_watch_change.c
83
REQUIRE(nread == 2 * sizeof(events[0]));
tests/compat/linux/h_inotify_watch_change.c
84
REQUIRE(events[0].mask == LINUX_IN_OPEN);
tests/compat/linux/h_inotify_watch_change.c
85
REQUIRE(events[1].mask == LINUX_IN_CLOSE_NOWRITE);
tests/crypto/libcrypto/t_sha512trunc.c
72
REQUIRE(ctx = EVP_MD_CTX_new());
tests/crypto/libcrypto/t_sha512trunc.c
73
REQUIRE(EVP_DigestInit_ex(ctx, md, NULL));
tests/crypto/libcrypto/t_sha512trunc.c
74
REQUIRE(EVP_DigestUpdate(ctx, C[i].in, C[i].inlen));
tests/crypto/libcrypto/t_sha512trunc.c
75
REQUIRE(EVP_DigestFinal_ex(ctx, digest, &digestlen1));
tests/dev/md/h_mdserv.c
100
REQUIRE(error, "pthread_create");
tests/dev/md/h_mdserv.c
55
REQUIRE(error, "rump_daemonize_done");
tests/dev/md/h_mdserv.c
78
REQUIRE(error, "rump_daemonize_begin");
tests/dev/md/h_mdserv.c
81
REQUIRE(error, "rump_init");
tests/dev/md/h_mdserv.c
84
REQUIRE(error, "init server");