Symbol: REG_EXTENDED
bin/pkill/pkill.c
109
static int cflags = REG_EXTENDED;
crypto/krb5/src/kadmin/dbutil/dump.c
235
st = regcomp(&reg, args->names[i], REG_EXTENDED);
crypto/krb5/src/lib/krb5/os/localauth_rule.c
119
if (regcomp(&re, regstr, REG_EXTENDED))
crypto/krb5/src/lib/krb5/os/localauth_rule.c
98
ret = (regcomp(&re, regstr, REG_EXTENDED) == 0 &&
crypto/krb5/src/plugins/preauth/pkinit/pkinit_matching.c
342
ret = regcomp(&rc->regexp, value, REG_EXTENDED);
crypto/krb5/src/util/support/regex.cpp
58
flags = (cflags & REG_EXTENDED) ? std::regex::extended : std::regex::basic;
lib/libc/locale/rpmatch.c
39
if (regcomp(&yes, nl_langinfo(YESEXPR), REG_EXTENDED|REG_NOSUB) != 0)
lib/libc/locale/rpmatch.c
41
if (regcomp(&no, nl_langinfo(NOEXPR), REG_EXTENDED|REG_NOSUB) != 0) {
lib/libc/regex/grot/main.c
162
options('c', f[1]) &~ REG_EXTENDED);
lib/libc/regex/grot/main.c
18
int copts = REG_EXTENDED;
lib/libc/regex/grot/main.c
214
char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
lib/libc/regex/grot/main.c
315
o &= ~REG_EXTENDED;
lib/libc/regex/grot/main.c
327
o &= ~REG_EXTENDED;
lib/libc/regex/regcomp.c
1336
if (!(p->g->cflags&REG_EXTENDED))
lib/libc/regex/regcomp.c
220
if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
lib/libc/regex/regcomp.c
272
p->allowbranch = (cflags & REG_EXTENDED) != 0;
lib/libc/regex/regcomp.c
277
p->allowbranch = (cflags & REG_EXTENDED) != 0;
lib/libc/regex/regcomp.c
279
if (cflags & REG_EXTENDED) {
lib/libcompat/4.3/re_comp.c
68
rc = regcomp(&re_regexp, s, REG_EXTENDED);
lib/libpmc/libpmc_pmu_util.c
265
if (regcomp(&re, pme->cpuid, REG_EXTENDED) != 0) {
libexec/getty/subr.c
472
if (regcomp(&regex, pattern, REG_EXTENDED) != 0)
sbin/devd/devd.cc
294
regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
sbin/fdisk/fdisk.c
1492
REG_EXTENDED)) != 0)
sys/dev/aic7xxx/aicasm/aicasm_gram.y
1557
retval = regcomp(&marg->arg_regex, regex_pattern, REG_EXTENDED);
tests/sys/ses/nondestructive.c
57
r = regcomp(&re, "(Overall|Element [0-9]+) descriptor: ", REG_EXTENDED);
tools/tools/drm/radeon/mkregtable/mkregtable.c
650
(&mask_rex, "(0x[0-9a-fA-F]*) *([_a-zA-Z0-9]*)", REG_EXTENDED)) {
usr.bin/diff/diff.c
494
error = regcomp(comp, pattern, REG_NEWLINE | REG_EXTENDED);
usr.bin/find/main.c
85
regexp_flags |= REG_EXTENDED;
usr.bin/grep/grep.c
670
cflags |= REG_EXTENDED;
usr.bin/killall/killall.c
356
REG_EXTENDED|REG_NOSUB) != 0) {
usr.bin/killall/killall.c
382
REG_EXTENDED|REG_NOSUB) != 0) {
usr.bin/m4/gnum4.c
485
int mode = REG_EXTENDED;
usr.bin/m4/gnum4.c
529
error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE);
usr.bin/sed/main.c
129
rflags = REG_EXTENDED;
usr.bin/sort/sort.c
632
if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
usr.bin/sort/sort.c
788
if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
usr.bin/split/split.c
144
error = regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB);
usr.bin/whereis/whereis.c
405
if ((i = regcomp(&re, MANWHEREISMATCH, REG_EXTENDED)) != 0) {
usr.bin/whereis/whereis.c
621
REG_EXTENDED|REG_NOSUB))
usr.bin/xargs/xargs.c
783
regcomp(&cre, nl_langinfo(YESEXPR), REG_EXTENDED) != 0) {
usr.sbin/gstat/gstat.c
139
if (regcomp(&f_re, optarg, REG_EXTENDED) != 0)
usr.sbin/gstat/gstat.c
585
if (regcomp(&tmp_f_re, tmp_f_s, REG_EXTENDED)
usr.sbin/iovctl/parse.c
291
REG_EXTENDED | REG_ICASE);
usr.sbin/pmcstat/pmcstat.c
204
if ((rv = regcomp(&reg, spec, REG_EXTENDED|REG_NOSUB)) != 0) {
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
588
error = regcomp(&exc_regex, optarg, REG_EXTENDED);
usr.sbin/prometheus_sysctl_exporter/prometheus_sysctl_exporter.c
603
error = regcomp(&inc_regex, optarg, REG_EXTENDED);
usr.sbin/setfmac/setfmac.c
326
error = regcomp(&entry->regex, regexstr, REG_EXTENDED | REG_NOSUB);
usr.sbin/syslogd/syslogd_cap_config.c
88
re_flags |= REG_EXTENDED;