Searched refs:regexec (Results 1 – 13 of 13) sorted by relevance
/busybox-1.35.0/coreutils/ |
D | cut.c | 60 #define regexec(...) 0 macro 178 if (!regexec(®, line+uu, 1, &rr, REG_NOTBOL|REG_NOTEOL)) { in cut_file()
|
D | expr.c | 294 if (regexec(&re_buffer, sv->u.s, NMATCH, re_regs, 0) != REG_NOMATCH in docolon()
|
D | test.c | 604 val1 = regexec(&re_buffer, opnd1, 0, NULL, 0); in binop()
|
/busybox-1.35.0/procps/ |
D | pgrep.c | 210 match = (regexec(&re_buffer, cmd, 1, re_match, 0) == 0); in pgrep_main()
|
/busybox-1.35.0/editors/ |
D | sed.c | 799 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()
|
D | awk.c | 1948 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()
|
D | vi.c | 2722 if (regexec(preg, q, MAX_SUBPATTERN, regmatch, REG_STARTEND) != 0) in regex_search()
|
/busybox-1.35.0/findutils/ |
D | grep.c | 398 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()
|
D | find.c | 642 if (regexec(&ap->compiled_pattern, fileName, 1, &match, 0 /*eflags*/)) in ACTF()
|
/busybox-1.35.0/util-linux/ |
D | mdev.c | 515 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/ |
D | less.c | 851 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()
|
D | devfsd.c | 764 || regexec(&entry->preg, info->devname, MAX_SUBEXPR, mbuf, 0) != 0) in service_name()
|
/busybox-1.35.0/scripts/kconfig/ |
D | symbol.c | 737 if (regexec(&re, sym->name, 0, NULL, 0)) in sym_re_search()
|