Symbol: regcomp
bin/ed/re.c
84
if ((n = regcomp(expr, exps, ere)) != 0) {
bin/expr/expr.y
305
if ((rc = regcomp(&rp, re, REG_BASIC)) != 0) {
bin/pax/pat_rep.c
144
if ((res = regcomp(&(rep->rcmp), str+1, 0)) != 0) {
games/fortune/fortune/fortune.c
1209
code = regcomp(&rx->regex, pattern, flags);
include/regex.h
137
int regcomp(regex_t * __restrict, const char * __restrict, int);
include/regexp.h
103
regexp *regcomp(const char *) __RENAME(__compat_regcomp);
lib/libc/regex/regcomp.c
71
__weak_alias(regcomp,_regcomp)
lib/libcompat/4.3/regex.c
76
re_regexp = regcomp(s);
lib/libedit/search.c
133
if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
lib/libedit/search.c
142
if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
lib/libform/type_regex.c
66
if ((regcomp(&new->compiled, expression,
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
53
if (regcomp(&data_re, "^(" H "{8,9})"
tests/fs/cd9660/h_hexdump_r.c
57
if (regcomp(&end_re, "^(" H "{8,9})$", REG_EXTENDED) != 0)
tests/lib/libc/regex/main.c
118
err = regcomp(&re, argv[optind++], copts);
tests/lib/libc/regex/main.c
266
err = regcomp(&re, f0copy, opts);
tests/lib/libc/regex/t_exhaust.c
224
e = regcomp(&re, patterns[i], tests[i].type);
tests/lib/libc/regex/t_regex_att.c
519
int c = regcomp(&re, pattern, flags | iflags);
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) {
tests/rump/rumpkern/t_kern.c
90
if ((status = regcomp(&preg, expect, REG_BASIC)) != 0) {
usr.bin/csplit/csplit.c
391
if (regcomp(&cre, re, REG_BASIC|REG_NOSUB) != 0)
usr.bin/diff/diff.c
395
error = regcomp(comp, pattern, REG_NEWLINE | REG_EXTENDED);
usr.bin/find/function.c
1687
rv = regcomp(&reg, lineregexp, REG_NOSUB|regcomp_flags|
usr.bin/grep/grep.c
682
c = regcomp(&r_pattern[i], pattern[i], cflags);
usr.bin/m4/gnum4.c
504
error = regcomp(&re, source, mode);
usr.bin/m4/gnum4.c
542
error = regcomp(&re, source, REG_EXTENDED);
usr.bin/mail/list.c
579
if ((e = regcomp(&preg, str, cflags)) != 0) {
usr.bin/make/var.c
3066
error = regcomp(&args.re, re.str, REG_EXTENDED);
usr.bin/nl/nl.c
381
if ((error = regcomp(&numbering_properties[section].expr,
usr.bin/pkill/pkill.c
308
if ((rv = regcomp(&reg, *argv, cflags)) != 0) {
usr.bin/rdist/docmd.c
640
if ((err = regcomp(&s, nl->n_name, 0)) != 0) {
usr.bin/sed/compile.c
464
if ((eval = regcomp(rep, re, flags)) != 0)
usr.bin/xargs/xargs.c
633
regcomp(&cre, nl_langinfo(YESEXPR), REG_BASIC) != 0) {
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);