Lines Matching refs:line_off
299 … constant char *tpattern, constant char *line, size_t aline_len, size_t line_off, constant char **… in match_pattern1() argument
308 matched = match(tpattern, strlen(tpattern), line + line_off, line_len - line_off, &sp, &ep, nsp); in match_pattern1()
316 matched = re_search(pattern, line, line_len, line_off, line_len - line_off, &search_regs) >= 0; in match_pattern1()
331 rm[0].rm_so = line_off; in match_pattern1()
334 line += line_off; in match_pattern1()
373 line_off, flags, ovector, OVECTOR_COUNT); in match_pattern1()
396 line_off, flags, md, NULL); in match_pattern1()
421 matched = (re_exec(line + line_off) == 1); in match_pattern1()
427 matched = ((*ep++ = regex(pattern, line + line_off)) != NULL); in match_pattern1()
433 matched = regexec2(pattern, line + line_off, notbol); in match_pattern1()
435 matched = regexec(pattern, line + line_off); in match_pattern1()
464 …, constant char *tpattern, constant char *line, size_t line_len, size_t line_off, constant char **… in match_pattern() argument
469 …lbool matched = match_pattern1(pattern, tpattern, line, line_len, line_off, sp, ep, nsp, notbol, s… in match_pattern()