Lines Matching defs:regmatch
3304 regmatch_t regmatch;
3336 if (regexec(reg, buf, 1, ®match, eflags) == 0 &&
3337 regmatch.rm_so != regmatch.rm_eo) {
3341 buf + regmatch.rm_so);
3346 buf + regmatch.rm_eo);
3460 regmatch_t regmatch;
3465 while (regexec(preg, buf + px, 1, ®match, eflags) == 0) {
3466 if (regmatch.rm_so == regmatch.rm_eo)
3469 buf + px + regmatch.rm_so);
3475 buf + px + regmatch.rm_eo);
3490 px += regmatch.rm_eo;