Home | History | Annotate | Download | only in grep

Lines Matching defs:pmatch

290 	regmatch_t pmatch;
297 pmatch.rm_so = st;
298 pmatch.rm_eo = l->len;
309 l->len, &pmatch);
311 st = pmatch.rm_eo;
314 &pmatch, eflags);
316 st = pmatch.rm_eo;
322 (pmatch.rm_so != 0 ||
323 (size_t)pmatch.rm_eo != l->len))
326 if (fg_pattern[i].word && pmatch.rm_so != 0) {
330 if (pmatch.rm_so != 0 &&
331 sscanf(&l->dat[pmatch.rm_so - 1],
334 if ((size_t)pmatch.rm_eo != l->len &&
335 sscanf(&l->dat[pmatch.rm_eo],
343 matches[m++] = pmatch;
357 if (st == (size_t)pmatch.rm_so)