Searched refs:regcomp (Results 26 - 50 of 87) sorted by relevance

1234

/freebsd-11-stable/usr.bin/killall/
H A Dkillall.c357 if (regcomp(&rgx, cmd,
383 if (regcomp(&rgx, av[j],
/freebsd-11-stable/usr.sbin/gstat/
H A Dgstat.c130 if (regcomp(&f_re, optarg, REG_EXTENDED) != 0)
455 if (regcomp(&tmp_f_re, tmp_f_s, REG_EXTENDED)
/freebsd-11-stable/contrib/less/
H A Dpattern.c52 if (regcomp(comp, pattern, REGCOMP_FLAG))
126 comp = regcomp(pattern);
131 * regcomp has already printed an error message
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dmain.c108 err = regcomp(&re, argv[optind++], copts);
252 err = regcomp(&re, f0copy, opts);
H A Dt_regex_att.c514 int c = regcomp(&re, pattern, flags | iflags);
516 "regcomp returned %d for pattern %s at line %zu",
/freebsd-11-stable/lib/libc/regex/grot/
H A Dmain.c80 err = regcomp(&re, argv[optind++], copts);
224 err = regcomp(&re, f0copy, opts);
/freebsd-11-stable/usr.bin/m4/
H A Dgnum4.c409 * says. So we twiddle with the regexp before passing it to regcomp.
497 error = regcomp(&re, source, mode);
531 error = regcomp(&re, source, REG_EXTENDED|REG_NEWLINE);
/freebsd-11-stable/usr.bin/whereis/
H A Dwhereis.c408 if ((i = regcomp(&re, MANWHEREISMATCH, REG_EXTENDED)) != 0) {
410 errx(EX_UNAVAILABLE, "regcomp(%s) failed: %s",
623 if ((i = regcomp(&re2, cp2,
629 "regcomp(%s) failed: %s",
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex.h272 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
320 /* POSIX regcomp return error codes. (In the order listed in the
338 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
477 `regcomp', with a malloc'ed value, or set to NULL before calling
568 extern int regcomp (regex_t *__restrict __preg,
/freebsd-11-stable/contrib/gdb/include/
H A Dxregex2.h255 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
299 /* POSIX regcomp return error codes. (In the order listed in the
317 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
549 extern int regcomp _RE_ARGS ((regex_t *__restrict __preg,
/freebsd-11-stable/usr.bin/ctags/
H A Dctags.c180 if (regcomp(regx + step, lbuf,
/freebsd-11-stable/usr.bin/split/
H A Dsplit.c145 if (regcomp(&rgx, optarg, REG_EXTENDED|REG_NOSUB) != 0)
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm.c103 regcomp(&nfilter->CompiledRegex, optarg, REG_NOSUB))) {
/freebsd-11-stable/contrib/libarchive/tar/
H A Dsubst.c107 if ((r = regcomp(&rule->re, pattern, REG_BASIC)) != 0) {
/freebsd-11-stable/usr.bin/nl/
H A Dnl.c386 if ((error = regcomp(&numbering_properties[section].expr,
/freebsd-11-stable/usr.bin/vi/
H A DMakefile75 SRCS+= regcomp.c regerror.c regexec.c regfree.c
/freebsd-11-stable/bin/pax/
H A Dpat_rep.c88 * is compiled by regcomp() and is applied to filenames. "new" is the
135 if ((rep->rcmp = regcomp(str+1)) == NULL) {
137 if ((res = regcomp(&(rep->rcmp), str+1, 0)) != 0) {
/freebsd-11-stable/lib/libedit/
H A Dsearch.c135 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
144 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
/freebsd-11-stable/contrib/apr-util/dbd/unsupported/
H A Dapr_dbd_freetds.c433 if (regcomp(stmt->taint[n], arg, REG_ICASE|REG_EXTENDED) != 0) {
701 int rv = regcomp(&dbd_freetds_find_arg,
706 fprintf(stderr, "regcomp failed: %s\n", errmsg);
/freebsd-11-stable/contrib/atf/atf-c/
H A Dutils.c86 ATF_REQUIRE(regcomp(&preg, regex, REG_EXTENDED) == 0);
/freebsd-11-stable/usr.sbin/iovctl/
H A Dparse.c268 regex_err = regcomp(&vf_pat, "^"VF_PREFIX"([1-9][0-9]*|0)$",
/freebsd-11-stable/usr.bin/csplit/
H A Dcsplit.c382 if (regcomp(&cre, re, REG_BASIC|REG_NOSUB) != 0)
/freebsd-11-stable/usr.bin/diff/
H A Ddiff.c290 if ((error = regcomp(&ignore_re, ignore_pats,
/freebsd-11-stable/libexec/getty/
H A Dsubr.c479 if (regcomp(&regex, pattern, REG_EXTENDED) != 0)
/freebsd-11-stable/usr.sbin/setfmac/
H A Dsetfmac.c326 error = regcomp(&entry->regex, regexstr, REG_EXTENDED | REG_NOSUB);

Completed in 316 milliseconds

1234