Home
last modified time | relevance | path

Searched refs:regexec (Results 1 – 13 of 13) sorted by relevance

/busybox-1.35.0/coreutils/
Dcut.c60 #define regexec(...) 0 macro
178 if (!regexec(&reg, line+uu, 1, &rr, REG_NOTBOL|REG_NOTEOL)) { in cut_file()
Dexpr.c294 if (regexec(&re_buffer, sv->u.s, NMATCH, re_regs, 0) != REG_NOMATCH in docolon()
Dtest.c604 val1 = regexec(&re_buffer, opnd1, 0, NULL, 0); in binop()
/busybox-1.35.0/procps/
Dpgrep.c210 match = (regexec(&re_buffer, cmd, 1, re_match, 0) == 0); in pgrep_main()
/busybox-1.35.0/editors/
Dsed.c799 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) { in do_subst_command()
881 } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH); in do_subst_command()
1058 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0); in beg_match()
1163 && !regexec(sed_cmd->end_match,pattern_space, 0, NULL, 0)); in process_files()
1174 && (regexec(sed_cmd->end_match, in process_files()
Dawk.c1948 int r = regexec(preg, s, 1, pmatch, 0); in regexec1_nonempty()
1961 regexec(preg, s + ofs, 1, pmatch, 0); in regexec1_nonempty()
2247 if (regexec(icase ? rsplitter.n.r.ire : rsplitter.n.l.re, in awk_getline()
2464 while (regexec(regex, sp, 10, pmatch, regexec_flags) == 0) { in awk_sub()
2575 n = regexec(re, as0, 1, pmatch, 0); in do_match()
3108 int i = regexec(re, L.s, 0, NULL, 0); in evaluate()
Dvi.c2722 if (regexec(preg, q, MAX_SUBPATTERN, regmatch, REG_STARTEND) != 0) in regex_search()
/busybox-1.35.0/findutils/
Dgrep.c398 regexec(&gl->compiled_regex, match_at, 1, &gl->matched_range, match_flg) == 0 in grep_file()
543 if (regexec(&gl->compiled_regex, line + end, in grep_file()
Dfind.c642 if (regexec(&ap->compiled_pattern, fileName, 1, &match, 0 /*eflags*/)) in ACTF()
/busybox-1.35.0/util-linux/
Dmdev.c515 r = regexec(&e->match, val, /*size*/ 0, /*range[]*/ NULL, /*eflags*/ 0); in env_matches()
675 int regex_match = regexec(&rule->match, str_to_match, ARRAY_SIZE(off), off, 0); in make_device()
/busybox-1.35.0/miscutils/
Dless.c851 match_status = regexec(&pattern, line, 1, &match_structs, eflags); in print_found()
1344 if (regexec(&pattern, flines[pos], 0, NULL, 0) == 0 in fill_match_lines()
Ddevfsd.c764 || regexec(&entry->preg, info->devname, MAX_SUBEXPR, mbuf, 0) != 0) in service_name()
/busybox-1.35.0/scripts/kconfig/
Dsymbol.c737 if (regexec(&re, sym->name, 0, NULL, 0)) in sym_re_search()