Lines Matching refs:regmatch
3364 regmatch_t regmatch;
3396 if (regexec(reg, buf, 1, ®match, eflags) == 0 &&
3397 regmatch.rm_so != regmatch.rm_eo) {
3401 buf + regmatch.rm_so);
3406 buf + regmatch.rm_eo);
3520 regmatch_t regmatch;
3525 while (regexec(preg, buf + px, 1, ®match, eflags) == 0) {
3526 if (regmatch.rm_so == regmatch.rm_eo)
3529 buf + px + regmatch.rm_so);
3535 buf + px + regmatch.rm_eo);
3550 px += regmatch.rm_eo;