Lines Matching refs:matched
299 int matched; in match_pattern1() local
305 matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp); in match_pattern1()
313 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0; in match_pattern1()
314 if (matched) in match_pattern1()
331 matched = !regexec(pattern, line, RM_COUNT, rm, flags); in match_pattern1()
332 if (matched) in match_pattern1()
369 matched = (mcount > 0); in match_pattern1()
392 matched = (mcount > 0); in match_pattern1()
393 if (matched) in match_pattern1()
416 matched = (re_exec(line) == 1); in match_pattern1()
422 matched = ((*ep++ = regex(pattern, line)) != NULL); in match_pattern1()
423 if (matched) in match_pattern1()
428 matched = regexec2(pattern, line, notbol); in match_pattern1()
430 matched = regexec(pattern, line); in match_pattern1()
432 if (matched) in match_pattern1()
440 matched = (!(search_type & SRCH_NO_MATCH) && matched) || in match_pattern1()
441 ((search_type & SRCH_NO_MATCH) && !matched); in match_pattern1()
442 return (matched); in match_pattern1()
447 int matched = match_pattern1(pattern, tpattern, line, line_len, sp, ep, nsp, notbol, search_type); in match_pattern() local
452 matched = 0; in match_pattern()
454 return matched; in match_pattern()