Symbol: REG_EXTENDED
bin/ed/main.c
139
ere = REG_EXTENDED;
games/fortune/fortune/fortune.c
1205
flags = REG_EXTENDED | REG_NOSUB;
lib/libc/regex/regcomp.c
1443
if (!(p->g->cflags&REG_EXTENDED))
lib/libc/regex/regcomp.c
289
if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
lib/libc/regex/regcomp.c
341
p->allowbranch = (cflags & REG_EXTENDED) != 0;
lib/libc/regex/regcomp.c
346
p->allowbranch = (cflags & REG_EXTENDED) != 0;
lib/libc/regex/regcomp.c
348
if (cflags & REG_EXTENDED) {
lib/libform/type_regex.c
67
(REG_EXTENDED | REG_NOSUB | REG_NEWLINE))) != 0) {
sbin/efi/getvars.c
151
if (regcomp(&args.preg, regexp, REG_EXTENDED) != 0)
sbin/efi/showvar.c
533
if (regcomp(&preg, regexp, REG_EXTENDED) != 0)
sbin/mount_portal/conf.c
208
errcode = regcomp(&p->p_re, p->p_key, REG_EXTENDED|REG_NOSUB);
sbin/sysctl/sysctl.c
417
j = regcomp(&re[i], p[i].ps_re, REG_EXTENDED);
share/examples/refuse/dmesgfs/dmesgfs.c
266
if (regcomp(&r, "^([a-z0-9]+) at ([a-z0-9]+)(.*)", REG_EXTENDED) != 0) {
sys/dev/microcode/aic7xxx/aicasm_gram.y
1560
retval = regcomp(&marg->arg_regex, regex_pattern, REG_EXTENDED);
tests/fs/cd9660/h_hexdump_r.c
55
" \\|.{16}\\|$", REG_EXTENDED) != 0)
tests/fs/cd9660/h_hexdump_r.c
57
if (regcomp(&end_re, "^(" H "{8,9})$", REG_EXTENDED) != 0)
tests/lib/libc/regex/main.c
202
options('c', f[1]) &~ REG_EXTENDED);
tests/lib/libc/regex/main.c
255
const char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE";
tests/lib/libc/regex/main.c
361
o &= ~REG_EXTENDED;
tests/lib/libc/regex/main.c
373
o &= ~REG_EXTENDED;
tests/lib/libc/regex/main.c
45
int copts = REG_EXTENDED;
tests/lib/libc/regex/t_exhaust.c
199
{ p0, REG_EXTENDED },
tests/lib/libc/regex/t_exhaust.c
200
{ p1, REG_EXTENDED },
tests/lib/libc/regex/t_exhaust.c
201
{ p2, REG_EXTENDED },
tests/lib/libc/regex/t_exhaust.c
202
{ p3, REG_EXTENDED },
tests/lib/libc/regex/t_exhaust.c
203
{ p4, REG_EXTENDED },
tests/lib/libc/regex/t_exhaust.c
204
{ p5, REG_EXTENDED },
tests/lib/libc/regex/t_regex_att.c
510
flags = REG_EXTENDED;
tests/lib/libc/regex/t_regex_binary.c
49
if ((e = regcomp(&re, "[\xe0-\xf1][\xa0-\xd1].*", REG_EXTENDED)) != 0) {
tests/lib/libc/regex/t_regex_binary.c
68
if ((e = regcomp(&re, ": j:[]j:[]j:[\xd9j:[]", REG_EXTENDED)) != 0) {
usr.bin/diff/diff.c
395
error = regcomp(comp, pattern, REG_NEWLINE | REG_EXTENDED);
usr.bin/find/function.c
1685
(regcomp_flags & REG_EXTENDED) ? "" : "\\", regexp,
usr.bin/find/function.c
1686
(regcomp_flags & REG_EXTENDED) ? "" : "\\");
usr.bin/find/main.c
107
regcomp_flags = REG_EXTENDED;
usr.bin/grep/grep.c
661
cflags |= REG_EXTENDED;
usr.bin/m4/gnum4.c
494
int mode = REG_EXTENDED;
usr.bin/m4/gnum4.c
542
error = regcomp(&re, source, REG_EXTENDED);
usr.bin/mail/list.c
571
cflags |= REG_EXTENDED;
usr.bin/make/var.c
3066
error = regcomp(&args.re, re.str, REG_EXTENDED);
usr.bin/pkill/pkill.c
99
static int cflags = REG_EXTENDED;
usr.bin/sed/main.c
149
rflags |= REG_EXTENDED;
usr.sbin/user/user.c
1318
if ((sc = regcomp(&r, line, REG_EXTENDED|REG_NEWLINE)) != 0) {
usr.sbin/user/user.c
962
(void)regcomp(&r, pwtp->regex, REG_EXTENDED);