Searched refs:xregcomp (Results 1 – 12 of 12) sorted by relevance
/busybox-1.35.0/libbb/ |
D | Kbuild.src | 184 # We shouldn't build xregcomp.c if we don't need it - this ensures we don't 188 lib-$(CONFIG_AWK) += xregcomp.o 189 lib-$(CONFIG_SED) += xregcomp.o 190 lib-$(CONFIG_GREP) += xregcomp.o 191 lib-$(CONFIG_EGREP) += xregcomp.o 192 lib-$(CONFIG_FGREP) += xregcomp.o 193 lib-$(CONFIG_EXPR) += xregcomp.o 194 lib-$(CONFIG_MDEV) += xregcomp.o 195 lib-$(CONFIG_LESS) += xregcomp.o 196 lib-$(CONFIG_PGREP) += xregcomp.o [all …]
|
D | xregcomp.c | 25 void FAST_FUNC xregcomp(regex_t *preg, const char *regex, int cflags) in xregcomp() function
|
/busybox-1.35.0/include/ |
D | xregex.h | 19 void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
|
/busybox-1.35.0/coreutils/ |
D | cut.c | 59 #define xregcomp(x, ...) *(x) = 0 macro 96 if (shoe) xregcomp(®, delim, REG_EXTENDED); in cut_file()
|
D | expr.c | 290 xregcomp(&re_buffer, pv->u.s, 0); in docolon()
|
/busybox-1.35.0/procps/ |
D | pgrep.c | 155 xregcomp(&re_buffer, argv[0], OPT_ANCHOR ? REG_EXTENDED : (REG_EXTENDED|REG_NOSUB)); in pgrep_main()
|
/busybox-1.35.0/util-linux/ |
D | mdev.c | 372 xregcomp(&e->match, eq + 1, REG_EXTENDED); in parse_envmatch_pfx() 422 xregcomp(&G.cur_rule.match, val, REG_EXTENDED); in parse_next_rule()
|
/busybox-1.35.0/editors/ |
D | sed.c | 358 xregcomp(*regex, temp, G.regex_type); in get_address() 479 xregcomp(sed_cmd->sub_match, match, cflags); in parse_subst_cmd()
|
D | awk.c | 1321 xregcomp(re, s, REG_EXTENDED); in mk_re_node() 1322 xregcomp(re + 1, s, REG_EXTENDED | REG_ICASE); in mk_re_node() 1895 xregcomp(preg, s, cflags); in as_regex()
|
/busybox-1.35.0/findutils/ |
D | grep.c | 378 xregcomp(&gl->compiled_regex, gl->pattern, reflags); in grep_file()
|
D | find.c | 1444 xregcomp(&ap->compiled_pattern, arg1, 0 /*cflags*/); in parse_params()
|
/busybox-1.35.0/miscutils/ |
D | devfsd.c | 689 xregcomp(&new->preg, name, REG_EXTENDED); in process_config_line()
|