Lines Matching refs:matched
301 int matched; in match_pattern1() local
307 matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp); in match_pattern1()
315 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0; in match_pattern1()
316 if (matched) in match_pattern1()
333 matched = !regexec(pattern, line, RM_COUNT, rm, flags); in match_pattern1()
334 if (matched) in match_pattern1()
371 matched = (mcount > 0); in match_pattern1()
394 matched = (mcount > 0); in match_pattern1()
395 if (matched) in match_pattern1()
418 matched = (re_exec(line) == 1); in match_pattern1()
424 matched = ((*ep++ = regex(pattern, line)) != NULL); in match_pattern1()
425 if (matched) in match_pattern1()
430 matched = regexec2(pattern, line, notbol); in match_pattern1()
432 matched = regexec(pattern, line); in match_pattern1()
434 if (matched) in match_pattern1()
442 matched = (!(search_type & SRCH_NO_MATCH) && matched) || in match_pattern1()
443 ((search_type & SRCH_NO_MATCH) && !matched); in match_pattern1()
444 return (matched); in match_pattern1()
449 int matched = match_pattern1(pattern, tpattern, line, line_len, sp, ep, nsp, notbol, search_type); in match_pattern() local
454 matched = 0; in match_pattern()
456 return matched; in match_pattern()