Home | History | Annotate | Download | only in valgrind

Lines Matching refs:match

74     match = TsanAnalyzer.LOAD_LIB_RE.match(self.line_)
75 if match:
76 binary, ip = match.groups()
79 match = TsanAnalyzer.TSAN_LINE_RE.match(self.line_)
80 if match:
81 address, binary_name = match.groups()
115 if re.match('-+ suppression -+', self.line_):
120 while not re.match('-+ end suppression -+', self.line_):
185 match = re.search("used_suppression:\s+([0-9]+)\s(.*)", self.line_)
186 if match:
187 count, supp_name = match.groups()