Lines Matching full:pmatch
291 pmatch arguments are ignored, and the only result is yes/no/error. */
295 regmatch_t pmatch[], int eflags)
309 write to pmatch. */
311 if ((preg->re_cflags & REG_NOSUB) != 0 || pmatch == NULL) nmatch = 0;
320 if (pmatch == NULL) return REG_INVARG;
321 so = pmatch[0].rm_so;
322 eo = pmatch[0].rm_eo;
342 pmatch[i].rm_so = ovector[i*2];
343 pmatch[i].rm_eo = ovector[i*2+1];
345 for (; i < nmatch; i++) pmatch[i].rm_so = pmatch[i].rm_eo = -1;