Searched refs:cflags (Results 1 – 9 of 9) sorted by relevance
/busybox-1.35.0/libbb/ |
D | xregcomp.c | 13 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/ |
D | xregex.h | 18 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/ |
D | check-lxdialog.sh | 24 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/ |
D | Makefile | 154 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/ |
D | Kbuild.include | 53 # 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/ |
D | sed.c | 397 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()
|
D | awk.c | 1872 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()
|
D | vi.c | 3186 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/ |
D | Makefile.flags | 113 $(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2))
|