Searched refs:regex (Results 1 - 25 of 104) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/include/
H A Dxregex.h4 * C library we're linking against may not support regex.h.
14 #include <regex.h>
15 char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags);
16 void xregcomp(regex_t *preg, const char *regex, int cflags);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/bgpd/
H A Dbgp_regex.h24 #include <regex.h>
26 #include "regex-gnu.h"
29 void bgp_regex_free (regex_t *regex);
31 int bgp_regexec (regex_t *regex, struct aspath *aspath);
H A Dbgp_regex.c46 regex_t *regex; local
67 regex = XMALLOC (MTYPE_BGP_REGEXP, sizeof (regex_t));
69 ret = regcomp (regex, magic_str, REG_EXTENDED);
75 XFREE (MTYPE_BGP_REGEXP, regex);
79 return regex;
83 bgp_regexec (regex_t *regex, struct aspath *aspath) argument
85 return regexec (regex, aspath->str, 0, NULL, 0);
89 bgp_regex_free (regex_t *regex) argument
91 regfree (regex);
92 XFREE (MTYPE_BGP_REGEXP, regex);
[all...]
H A Dbgp_clist.c558 regex_t *regex;
622 regex = bgp_regcomp (str);
623 if (regex)
626 entry->reg = regex;
654 regex_t *regex;
692 regex = bgp_regcomp (str);
693 if (regex)
696 bgp_regex_free (regex);
718 regex_t *regex;
787 regex
554 regex_t *regex; local
650 regex_t *regex; local
714 regex_t *regex; local
815 regex_t *regex; local
[all...]
H A Dbgp_filter.c451 regex_t *regex;
468 /* Check AS path regex. */
484 regex = bgp_regcomp (regstr);
485 if (!regex)
493 asfilter = as_filter_make (regex, regstr, type);
528 regex_t *regex;
566 regex = bgp_regcomp (regstr);
567 if (!regex)
579 bgp_regex_free (regex);
448 regex_t *regex; variable
525 regex_t *regex; variable
576 bgp_regex_free (regex); variable
H A Dbgp_routemap.c32 #include <regex.h>
34 #include "regex-gnu.h"
401 regex_t *regex;
404 regex = rule;
408 return bgp_regexec (regex, bgp_info->attr->aspath);
415 regex_t *regex;
417 regex = bgp_regcomp (arg);
418 if (! regex)
421 return regex;
428 regex_t *regex
395 regex_t *regex; local
409 regex_t *regex; local
422 regex_t *regex = rule; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dxregcomp.c14 char* regcomp_or_errmsg(regex_t *preg, const char *regex, int cflags) argument
16 int ret = regcomp(preg, regex, cflags);
26 void xregcomp(regex_t *preg, const char *regex, int cflags) argument
28 char *errmsg = regcomp_or_errmsg(preg, regex, cflags);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A DMakefile.am31 m-common.h m-common.c m-fgrep.c m-regex.c \
38 regex.h regex.c \
H A DMakefile195 $(top_srcdir)/m4/locale-ja.m4 $(top_srcdir)/m4/regex.m4 \
207 m-common.$(OBJEXT) m-fgrep.$(OBJEXT) m-regex.$(OBJEXT) \
485 LIBGREPOBJS = regex.o
695 m-common.h m-common.c m-fgrep.c m-regex.c \
702 regex.h regex.c \
707 libgrep_a_LIBADD = regex.o
708 libgrep_a_DEPENDENCIES = regex.o
H A DMakefile.in195 $(top_srcdir)/m4/locale-ja.m4 $(top_srcdir)/m4/regex.m4 \
207 m-common.$(OBJEXT) m-fgrep.$(OBJEXT) m-regex.$(OBJEXT) \
695 m-common.h m-common.c m-fgrep.c m-regex.c \
702 regex.h regex.c \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_macro_scan.l50 #include <regex.h>
H A Daicasm_macro_gram.y49 #include <regex.h>
H A Daicasm_scan.l50 #include <regex.h>
H A Daicasm.c49 #include <regex.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/csv/
H A Dcsv.h30 #include <regex.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dmdev.c79 /* Three fields: regex, uid:gid, mode */
93 char *regex = xstrndup(pos, end2-pos); local
99 xregcomp(&match,regex, REG_EXTENDED);
102 free(regex);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/Test/
H A DBuilder.pm580 $Test->like($this, qr/$regex/, $name);
581 $Test->like($this, '/$regex/', $name);
583 Like Test::More's like(). Checks if $this matches the given $regex.
589 $Test->unlike($this, qr/$regex/, $name);
590 $Test->unlike($this, '/$regex/', $name);
593 given $regex.
598 my($self, $this, $regex, $name) = @_;
601 $self->_regex_ok($this, $regex, '=~', $name);
605 my($self, $this, $regex, $name) = @_;
608 $self->_regex_ok($this, $regex, '!~',
[all...]
H A DMore.pm376 Similar to ok(), like() matches $this against the regex C<qr/that/>.
389 regex reference (i.e. C<qr//>) or (for better compatibility with older
390 perls) as a string that looks like a regex (alternative delimiters are
987 Not everything is a simple eq check or regex. There are times you
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/m4/
H A DMakefile.am50 regex.m4 \
H A DMakefile198 $(top_srcdir)/m4/locale-ja.m4 $(top_srcdir)/m4/regex.m4 \
478 LIBGREPOBJS = regex.o
722 regex.m4 \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-gobject/
H A DMakefile.am68 libavahi_gobject_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBAVAHI_GOBJECT_VERSION_INFO) -export-symbols-regex '^ga_'
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/findutils/
H A Dfind.c81 USE_FEATURE_FIND_REGEX( ACTS(regex, regex_t compiled_pattern;))
200 ACTF(regex)
493 USE_FEATURE_FIND_REGEX( "-regex\0" )
671 ap = ALLOC_ACTION(regex);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/
H A DMakefile866 `find $(objtree) $(srctree) -maxdepth 1 -regex $(pattern) | sort -u`)
1396 --regex-asm='/ENTRY\(([^)]*)\).*/\1/'; \
1400 --regex-kconfig='/^[[:blank:]]*config[[:blank:]]+([[:alnum:]_]+)/\1/'; \
1404 --regex-dotconfig='/^#?[[:blank:]]*(CONFIG_[[:alnum:]_]+)/\1/'; \
1408 --regex='/^[ \t]*config[ \t]+\([a-zA-Z0-9_]+\)/\1/'; \
1410 --regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/'; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/editors/
H A Dsed.c56 - Create a wrapper around regex to make libc's regex conform with sed
272 static int get_address(const char *my_str, int *linenum, regex_t ** regex) argument
291 *regex = xmalloc(sizeof(regex_t));
292 xregcomp(*regex, temp, G.regex_type|REG_NEWLINE);
393 /* compile the match string into a regex */
395 /* If match is empty, we use last regex used at runtime */
528 /* first part (if present) is an address: either a '$', a number or a /regex/ */
628 /* Handle empty regex. */
885 /* Or does this line match our begin address regex
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/hotplug2/
H A Drules.c12 #include <regex.h>

Completed in 213 milliseconds

12345