Searched refs:regcomp (Results 51 - 75 of 87) sorted by relevance

1234

/freebsd-11-stable/contrib/gdb/gdb/cli/
H A Dcli-cmds.c977 if (regcomp(&pattern,searchstr,REG_ICASE) == 0)
985 regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_schema.c80 if (regcomp (&reg, pattern, REG_EXTENDED | REG_NOSUB) == 0) {
394 if (regcomp (&re, ucl_object_tostring (elt),
/freebsd-11-stable/usr.bin/sort/
H A Dsort.c638 if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
794 if (regcomp(&re, sregexp, REG_EXTENDED) != 0)
/freebsd-11-stable/contrib/less/
H A Dregexp.c2 * regcomp and regexec -- regsub and regerror are elsewhere
55 * that regcomp() supplies a regmust only if the r.e. contains something
58 * supplied because the test in regexec() needs it and regcomp() is
159 * Global work variables for regcomp().
175 * Forward declarations for regcomp()'s friends.
195 - regcomp - compile a regular expression into internal code
210 regcomp(exp) function
/freebsd-11-stable/bin/expr/
H A Dexpr.y541 if ((eval = regcomp(&rp, b->u.s, 0)) != 0) {
/freebsd-11-stable/sbin/fdisk_pc98/
H A Dfdisk.c884 if ((rv = regcomp(&re, "^(/dev/[a-z]+[0-9]+)([sp][0-9]+)?[a-h]?$",
886 errx(1, "regcomp() failed (%d)", rv);
/freebsd-11-stable/tools/tools/drm/radeon/mkregtable/
H A Dmkregtable.c657 if (regcomp
/freebsd-11-stable/bin/pkill/
H A Dpkill.c348 if ((rv = regcomp(&reg, *argv, cflags)) != 0) {
/freebsd-11-stable/contrib/mdocml/
H A Dmansearch.c786 irc = regcomp(e->match.re, val,
790 warnx("regcomp /%s/: %s", val, errbuf);
/freebsd-11-stable/usr.bin/grep/
H A Dgrep.c83 /* Flags passed to regcomp() and regexec() */
763 c = regcomp(&r_pattern[i], pattern[i].pat, cflags);
/freebsd-11-stable/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c143 error = regcomp(&rep->re_regexp, rep->re_pattern,
147 (void) fprintf(stderr, "regcomp: %s\n", re_error);
/freebsd-11-stable/contrib/file/src/
H A Dfuncs.c650 return rx->rc = regcomp(&rx->rx, pat, flags);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dmep-asm.c1132 reg_err = regcomp ((regex_t *) CGEN_INSN_RX (insn), rxbuf, REG_NOSUB);
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_subst.c117 * to regcomp which doesn't understand anything else.
978 if ((rval = regcomp(rep, ptrn, /* plen, */ reflags)) != 0) {
/freebsd-11-stable/usr.bin/fortune/fortune/
H A Dfortune.c349 error = regcomp(&Re_pat, pat, REG_BASIC);
351 fprintf(stderr, "regcomp(%s) fails\n", pat);
/freebsd-11-stable/contrib/amd/amd/
H A Dmapc.c477 retval = regcomp(&re, pattern, REG_ICASE);
/freebsd-11-stable/usr.bin/sed/
H A Dcompile.c442 * Cflags are passed to regcomp.
456 if ((eval = regcomp(rep, re, flags)) != 0)
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c1514 if ((rv = regcomp(&re, "^(/dev/[a-z/]+[0-9]*)([sp][0-9]+)?[a-h]?(\\.journal)?$",
1516 errx(1, "regcomp() failed (%d)", rv);
/freebsd-11-stable/sbin/devd/
H A Ddevd.cc293 regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
/freebsd-11-stable/usr.bin/find/
H A Dfunction.c1440 if ((errcode = regcomp(pre, pattern,
/freebsd-11-stable/usr.sbin/pmcstat/
H A Dpmcstat.c318 if ((rv = regcomp(&reg, spec, REG_EXTENDED|REG_NOSUB)) != 0) {
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y1557 retval = regcomp(&marg->arg_regex, regex_pattern, REG_EXTENDED);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dregex.c68 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) macro
7829 regcomp/regexec below without link errors. */
7894 /* regcomp takes a regular expression as a string and compiles it.
7930 regcomp (regex_t *preg, const char *pattern, int cflags)
8004 weak_alias (__regcomp, regcomp)
8012 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
8083 from either regcomp or regexec. We don't use PREG here. */
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dregex.c68 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) macro
7829 regcomp/regexec below without link errors. */
7894 /* regcomp takes a regular expression as a string and compiles it.
7930 regcomp (regex_t *preg, const char *pattern, int cflags)
8004 weak_alias (__regcomp, regcomp)
8012 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
8083 from either regcomp or regexec. We don't use PREG here. */
/freebsd-11-stable/contrib/nvi/regex/
H A Dregcomp.c1 /* $NetBSD: regcomp.c,v 1.7 2011/11/19 17:45:11 tnozaki Exp $ */
35 * @(#)regcomp.c 8.4 (Berkeley) 3/19/94
39 static char sccsid[] = "@(#)regcomp.c 8.4 (Berkeley) 3/19/94";
80 /* === regcomp.c === */
177 - regcomp - interface for parser and compilation
180 regcomp(regex_t *preg, const RCHAR_T *pattern, int cflags) function

Completed in 523 milliseconds

1234