Searched refs:regmatch_t (Results 1 – 5 of 5) sorted by relevance
/bionic/tests/headers/posix/ |
D | regex_h.c | 39 TYPE(regmatch_t); in regex_h() 40 STRUCT_MEMBER(regmatch_t, regoff_t, rm_so); in regex_h() 41 STRUCT_MEMBER(regmatch_t, regoff_t, rm_eo); in regex_h() 67 FUNCTION(regexec, int (*f)(const regex_t*, const char*, size_t, regmatch_t*, int)); in regex_h()
|
/bionic/libc/include/ |
D | regex.h | 59 } regmatch_t; typedef 102 int regexec(const regex_t* __re, const char* __s, size_t __match_count, regmatch_t __matches[], int…
|
/bionic/tests/ |
D | regex_test.cpp | 42 regmatch_t matches[1]; in TEST()
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regexec.c | 207 regmatch_t pmatch[],
|
D | engine.c | 110 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */ 129 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int e… 180 regmatch_t pmatch[], in matcher() 262 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) * in matcher() 263 sizeof(regmatch_t)); in matcher()
|