Home
last modified time | relevance | path

Searched refs:regmatch_t (Results 1 – 5 of 5) sorted by relevance

/bionic/tests/headers/posix/
Dregex_h.c39 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/
Dregex.h59 } regmatch_t; typedef
102 int regexec(const regex_t* __re, const char* __s, size_t __match_count, regmatch_t __matches[], int…
/bionic/tests/
Dregex_test.cpp42 regmatch_t matches[1]; in TEST()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregexec.c207 regmatch_t pmatch[],
Dengine.c110 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()