Home | History | Annotate | Download | only in grep

Lines Matching defs:pmatch

289 	regmatch_t pmatch;
296 pmatch.rm_so = st;
297 pmatch.rm_eo = l->len;
308 l->len, &pmatch);
310 st = pmatch.rm_eo;
313 &pmatch, eflags);
315 st = pmatch.rm_eo;
321 (pmatch.rm_so != 0 ||
322 (size_t)pmatch.rm_eo != l->len))
325 if (fg_pattern[i].word && pmatch.rm_so != 0) {
329 if (pmatch.rm_so != 0 &&
330 sscanf(&l->dat[pmatch.rm_so - 1],
333 if ((size_t)pmatch.rm_eo != l->len &&
334 sscanf(&l->dat[pmatch.rm_eo],
342 matches[m++] = pmatch;
356 if (st == (size_t)pmatch.rm_so)