Symbol: regexec
bin/ed/glbl.c
70
if ((!regexec(pat, s, 0, NULL, 0)) == isgcmd &&
bin/ed/main.c
932
if (!regexec(pat, s, 0, NULL, 0))
bin/ed/sub.c
192
if (!regexec(pat, txt, SE_MAX, rm, 0)) {
bin/ed/sub.c
215
&& !regexec(pat, txt, SE_MAX, rm, REG_NOTBOL));
bin/expr/expr.y
311
if (regexec(&rp, str, 2, rm, 0) == 0 && rm[0].rm_so == 0) {
bin/pax/pat_rep.c
944
if (regexec(&(pt->rcmp), inpt, MAXSUBEXP, pm, 0) != 0)
games/fortune/fortune/fortune.c
1236
return regexec(&rx->regex, string, 0, NULL, 0) == 0;
include/regex.h
139
int regexec(const regex_t * __restrict,
include/regexp.h
104
int regexec(const regexp *, const char *) __RENAME(__compat_regexec);
lib/libc/regex/regexec.c
71
__weak_alias(regexec,_regexec)
lib/libcompat/4.3/regex.c
88
rc = regexec(re_regexp, s);
lib/libedit/search.c
134
rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
lib/libedit/search.c
143
rv = regexec(re, ct_encode_string(str, &conv));
lib/libform/type_regex.c
107
(regexec(&((regex_args *) (void *) field->args)->compiled,
sbin/efi/getvars.c
126
rv = !regexec(&args->preg, args->name, 0, NULL, 0);
sbin/efi/showvar.c
545
if (regexec(&preg, v->name, 0, NULL, 0) == 0) { /* matched */
sbin/mount_portal/conf.c
330
if (regexec(&p->p_re, key, 0, NULL, 0) == 0)
sbin/sysctl/sysctl.c
424
j = regexec(&re[i], s, 1, &match, 0);
share/examples/refuse/dmesgfs/dmesgfs.c
279
if (regexec(&r, buf, 10, matchv, 0) == 0) {
tests/fs/cd9660/h_hexdump_r.c
66
if (regexec(&data_re, line, 18, m, 0) == 0) {
tests/fs/cd9660/h_hexdump_r.c
72
} else if (regexec(&end_re, line, 2, m, 0) == 0) {
tests/lib/libc/regex/main.c
136
err = regexec(&re, argv[optind], (size_t)NS, subs, eopts);
tests/lib/libc/regex/main.c
296
err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
tests/lib/libc/regex/t_exhaust.c
233
(void)regexec(&re, "aaaaaaaaaaa", 0, NULL, 0);
tests/lib/libc/regex/t_regex_att.c
525
int e = regexec(&re, input, nm, pm, 0);
tests/rump/rumpkern/t_kern.c
95
if ((status = regexec(&preg, buf, 0, NULL, 0)) != 0) {
usr.bin/csplit/csplit.c
408
if (!first && regexec(&cre, p, 0, NULL, 0) == 0)
usr.bin/diff/diffreg.c
1397
int ret = regexec(&most_recent_re, buf, 0, NULL, 0);
usr.bin/diff/diffreg.c
986
ret = regexec(&ignore_re, line, 0, NULL, 0);
usr.bin/find/function.c
1664
return (regexec(&plan->regexp_data, entry->fts_path, 0, NULL, 0) == 0);
usr.bin/grep/util.c
313
r = regexec(&r_pattern[i], l->dat, 1,
usr.bin/m4/gnum4.c
340
while ((error = regexec(re, string, re->re_nsub+1, pm, flags)) == 0) {
usr.bin/m4/gnum4.c
382
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/m4/gnum4.c
399
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/mail/list.c
492
switch ((rval = regexec(preg, line, 0, pmp, eflags))) {
usr.bin/make/var.c
1667
xrv = regexec(&args->re, wp, args->nsub, m, flags);
usr.bin/nl/nl.c
327
(regexec(&numbering_properties[section].expr,
usr.bin/pkill/pkill.c
335
rv = regexec(&reg, buf, 1, &regmatch, 0);
usr.bin/rdist/docmd.c
645
if (regexec(&s, file, 0, NULL, 0) == 0) {
usr.bin/sed/process.c
697
eval = regexec(defpreg, buf,
usr.bin/sed/process.c
703
eval = regexec(defpreg, string,
usr.bin/xargs/xargs.c
638
match = regexec(&cre, response, 0, NULL, 0);
usr.sbin/user/user.c
1353
if (regexec(&r, buf, 10, matchv, 0) == 0) {
usr.sbin/user/user.c
963
if (regexec(&r, newpasswd, 10, matchv, 0) == 0) {