Symbol: regexec
bin/ed/glbl.c
62
if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) &&
bin/ed/main.c
890
if (!regexec(pat, s, 0, NULL, 0))
bin/ed/sub.c
183
if (!regexec(pat, txt, SE_MAX, rm, 0)) {
bin/ed/sub.c
207
!regexec(pat, txt, SE_MAX, rm, REG_NOTBOL));
bin/expr/expr.y
544
if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0)
bin/pax/pat_rep.c
865
if (regexec(&(pt->rcmp), inpt, MAXSUBEXP, pm, 0) != 0)
bin/pkill/pkill.c
401
rv = regexec(&reg, mstr, 1, &regmatch, 0);
crypto/krb5/src/kadmin/dbutil/dump.c
243
st = regexec(&reg, name, 1, &rmatch, 0);
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
742
if (regexec(&p->preg, pname, 0, NULL, 0) != 0)
crypto/krb5/src/lib/kadm5/srv/svr_iters.c
114
match = (regexec(&data->preg, name, 0, NULL, 0) == 0);
crypto/krb5/src/lib/krb5/os/localauth_rule.c
122
while (regexec(&re, instr, 1, &m, 0) == 0) {
crypto/krb5/src/lib/krb5/os/localauth_rule.c
99
regexec(&re, selstring, 1, &m, 0) == 0 &&
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
454
code = regexec(&rc->regexp, value, 0, NULL, 0);
include/regex.h
111
int regexec(const regex_t * __restrict, const char * __restrict, size_t,
lib/libc/locale/rpmatch.c
45
if (regexec(&yes, response, 0, NULL, 0) == 0)
lib/libc/locale/rpmatch.c
47
else if (regexec(&no, response, 0, NULL, 0) == 0)
lib/libc/regex/grot/main.c
250
err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
lib/libc/regex/grot/main.c
95
err = regexec(&re, argv[optind], (size_t)NS, subs, eopts);
lib/libcompat/4.3/re_comp.c
86
rc = regexec(&re_regexp, s, 0, NULL, 0);
lib/libpmc/libpmc_pmu_util.c
270
match = regexec(&re, buf, 1, pmatch, 0);
libexec/getty/subr.c
481
found = !regexec(&regex, HN, regex.re_nsub + 1, match, 0);
sbin/devd/devd.cc
319
retval = (regexec(&_regex, value.c_str(), 0, NULL, 0) == 0);
sbin/fdisk/fdisk.c
1498
if ((rv = regexec(&re, dev, NMATCHES, rm, 0)) != 0)
tests/sys/ses/nondestructive.c
72
if (regexec(&re, line, 1, matches, 0) == REG_NOMATCH) {
tools/tools/drm/radeon/mkregtable/mkregtable.c
684
r = regexec(&mask_rex, buf, 4, match, 0);
usr.bin/csplit/csplit.c
396
if (!first && regexec(&cre, p, 0, NULL, 0) == 0)
usr.bin/ctags/ctags.c
192
if (regexec(regx + step,
usr.bin/diff/diffreg.c
1044
ret = regexec(&ignore_re, line, 0, NULL, 0);
usr.bin/diff/diffreg.c
1480
int ret = regexec(&most_recent_re, buf, 0, NULL, 0);
usr.bin/find/function.c
1509
errcode = regexec(pre, str, 1, &pmatch, REG_STARTEND);
usr.bin/fortune/fortune/fortune.c
1339
if (regexec(&Re_pat, Fortbuf, 0, NULL, 0) != REG_NOMATCH) {
usr.bin/grep/util.c
559
r = regexec(&r_pattern[i], pc->ln.dat, 1, &pmatch,
usr.bin/killall/killall.c
364
if (regexec(&rgx, thiscmd, 0, &pmatch,
usr.bin/killall/killall.c
390
if (regexec(&rgx, thiscmd, 0, &pmatch,
usr.bin/m4/gnum4.c
337
while ((error = regexec(re, string, re->re_nsub+1, pm, flags)) == 0) {
usr.bin/m4/gnum4.c
376
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/m4/gnum4.c
394
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/nl/nl.c
327
(regexec(&numbering_properties[section].expr,
usr.bin/sed/process.c
676
eval = regexec(defpreg, string,
usr.bin/sort/sort.c
635
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.bin/sort/sort.c
791
if (regexec(&re, s, nmatch, pmatch, 0) != 0)
usr.bin/split/split.c
296
if (regexec(&rgx, buf, 0, &pmatch, REG_STARTEND) == 0)
usr.bin/whereis/whereis.c
502
if (regexec(&re, buf, 2,
usr.bin/whereis/whereis.c
630
if (regexec(&re2, buf, 0,
usr.bin/xargs/xargs.c
787
match = regexec(&cre, response, 0, NULL, 0);
usr.sbin/fifolog/fifolog_reader/fifolog_reader.c
60
if (opt_R != NULL && regexec(&R, (const char *)p, 0, NULL, 0))
usr.sbin/gstat/gstat.c
337
if ((regexec(&f_re, pp->lg_name, 0, NULL, 0)
usr.sbin/iovctl/parse.c
338
} else if (regexec(&vf_pat, key, 0, NULL, 0) == 0) {
usr.sbin/iovctl/validate.c
262
if (regexec(vf_pat, key, nitems(matches), matches, 0) == 0) {
usr.sbin/pmcstat/pmcstat.c
211
if ((rv = regexec(&reg, kp->ki_comm, 1, &regmatch, 0)) == 0) {
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
505
if (exclude && regexec(&exc_regex, metric, 0, NULL, 0) == 0)
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
508
if (include && regexec(&inc_regex, metric, 0, NULL, 0) != 0)
usr.sbin/setfmac/setfmac.c
419
error = regexec(&ent->regex, ftsent->fts_path, 1,
usr.sbin/syslogd/syslogd.c
1478
if (regexec(filter->pflt_re, value, 0, NULL, 0) == 0)