Home
last modified time | relevance | path

Searched refs:cflags (Results 1 – 9 of 9) sorted by relevance

/busybox-1.35.0/libbb/
Dxregcomp.c13 char* FAST_FUNC regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) in regcomp_or_errmsg() argument
15 int ret = regcomp(preg, regex, cflags); in regcomp_or_errmsg()
25 void FAST_FUNC xregcomp(regex_t *preg, const char *regex, int cflags) in xregcomp() argument
27 char *errmsg = regcomp_or_errmsg(preg, regex, cflags); in xregcomp()
/busybox-1.35.0/include/
Dxregex.h18 char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
19 void xregcomp(regex_t *preg, const char *regex, int cflags) FAST_FUNC;
/busybox-1.35.0/scripts/kconfig/lxdialog/
Dcheck-lxdialog.sh24 if pkg-config --cflags ncursesw 2>/dev/null; then
26 elif pkg-config --cflags ncurses 2>/dev/null; then
/busybox-1.35.0/scripts/kconfig/
DMakefile154 HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
169 cflags="\$$(shell pkg-config $$pkg --cflags)"; \
191 cflags="-I$$dir/include"; \
201 echo "KC_QT_CFLAGS=$$cflags" > $@; \
/busybox-1.35.0/scripts/
DKbuild.include53 # Usage: cflags-y += $(call as-option, -Wa$(comma)-isa=foo,)
60 # Usage: cflags-y += $(call cc-option, -march=winchip-c6, -march=i586)
/busybox-1.35.0/editors/
Dsed.c397 int cflags = G.regex_type; in parse_subst_cmd() local
457 cflags |= REG_ICASE; in parse_subst_cmd()
478 dbg("xregcomp('%s',%x)", match, cflags); in parse_subst_cmd()
479 xregcomp(sed_cmd->sub_match, match, cflags); in parse_subst_cmd()
Dawk.c1872 int cflags; in as_regex() local
1887 cflags = icase ? REG_EXTENDED | REG_ICASE : REG_EXTENDED; in as_regex()
1893 if (regcomp(preg, s, cflags)) { in as_regex()
1894 cflags &= ~REG_EXTENDED; in as_regex()
1895 xregcomp(preg, s, cflags); in as_regex()
Dvi.c3186 int cflags; in colon()
3231 cflags = 0; in colon()
3233 cflags = REG_ICASE; in colon()
3235 if (regcomp(&preg, F, cflags) != 0) { in colon()
/busybox-1.35.0/
DMakefile.flags113 $(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2))