HomeSort by: relevance | last modified time | path
    Searched refs:regexec (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/include/
regexp.h 104 int regexec(const regexp *, const char *) __RENAME(__compat_regexec);
regex.h 128 /* regexec() flags */
139 int regexec(const regex_t * __restrict,
  /src/lib/libcompat/4.3/
regex.c 35 * terms of the regcomp/regexec interface. It's possible that some programs
88 rc = regexec(re_regexp, s);
  /src/tests/fs/cd9660/
h_hexdump_r.c 66 if (regexec(&data_re, line, 18, m, 0) == 0) {
72 } else if (regexec(&end_re, line, 2, m, 0) == 0) {
  /src/distrib/utils/libhack/
Makefile.inc 28 aligned_alloc.o regcomp.o regexec.o wrap.o
87 regexec.o: ${HACKSRC}/../../../lib/libc/regex/regexec.c
  /src/lib/libform/
type_regex.c 107 (regexec(&((regex_args *) (void *) field->args)->compiled,
  /src/tests/rump/rumpkern/
t_kern.c 95 if ((status = regexec(&preg, buf, 0, NULL, 0)) != 0) {
99 printf("regexec error: %s\n", buf);
  /src/tests/lib/libc/regex/
Makefile 22 REGEXSRCS = regcomp.c regerror.c regexec.c regsub.c
main.c 136 err = regexec(&re, argv[optind], (size_t)NS, subs, eopts);
279 err = 1; /* so we won't try regexec */
296 err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
t_exhaust.c 233 (void)regexec(&re, "aaaaaaaaaaa", 0, NULL, 0);
t_regex_att.c 525 int e = regexec(&re, input, nm, pm, 0);
  /src/lib/libc/regex/
regexec.c 1 /* $NetBSD: regexec.c,v 1.26 2021/02/26 19:24:47 christos Exp $ */
37 * @(#)regexec.c 8.3 (Berkeley) 3/20/94
46 static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
47 __FBSDID("$FreeBSD: head/lib/libc/regex/regexec.c 326025 2017-11-20 19:49:47Z pfg $");
49 __RCSID("$NetBSD: regexec.c,v 1.26 2021/02/26 19:24:47 christos Exp $");
52 * the outer shell of regexec()
71 __weak_alias(regexec,_regexec)
118 #define states1 states /* for later use in regexec() decision */
211 - regexec - interface for matching
212 = extern int regexec(const regex_t *, const char *, size_t,
226 regexec(const regex_t * __restrict preg, function in typeref:typename:int
    [all...]
  /src/bin/ed/
sub.c 192 if (!regexec(pat, txt, SE_MAX, rm, 0)) {
215 && !regexec(pat, txt, SE_MAX, rm, REG_NOTBOL));
glbl.c 70 if ((!regexec(pat, s, 0, NULL, 0)) == isgcmd &&
  /src/usr.bin/mail/
list.c 492 switch ((rval = regexec(preg, line, 0, pmp, eflags))) {
500 (void)printf("regexec failed: '%s': %s\n", line, errbuf);
  /src/sbin/efi/
getvars.c 126 rv = !regexec(&args->preg, args->name, 0, NULL, 0);
  /src/tools/make/
configure.ac 43 # regcomp() and regexec() are also names of functions in the old V8
  /src/usr.bin/m4/
gnum4.c 328 while ((error = regexec(re, string, re->re_nsub+1, pm, flags)) == 0) {
370 switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
387 switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
  /src/sbin/mount_portal/
conf.c 330 if (regexec(&p->p_re, key, 0, NULL, 0) == 0)
  /src/sys/external/bsd/drm2/dist/drm/radeon/
mkregtable.c 244 r = regexec(&mask_rex, buf, 4, match, 0);
  /src/usr.bin/nl/
nl.c 327 (regexec(&numbering_properties[section].expr,
  /src/bin/expr/
expr.y 311 if (regexec(&rp, str, 2, rm, 0) == 0 && rm[0].rm_so == 0) {
  /src/lib/libedit/
search.c 134 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
143 rv = regexec(re, ct_encode_string(str, &conv));
  /src/usr.bin/sed/
process.c 696 eval = regexec(defpreg, buf,
702 eval = regexec(defpreg, string,
  /src/share/examples/refuse/dmesgfs/
dmesgfs.c 279 if (regexec(&r, buf, 10, matchv, 0) == 0) {

Completed in 21 milliseconds

1 2