Home | History | Annotate | Download | only in valgrind

Lines Matching refs:suppression

22   def __init__(self, report, suppression, testcase):
30 supp_lines = suppression.split("\n")
46 output += "Suppression (error hash=#%016X#):\n" % self.ErrorHash()
52 # This is a device-independent hash identifying the suppression.
88 # suppression for a given error.
90 generated_suppressions = {} # Key -> Error #, Value -> Suppression text.
93 # suppression format slightly changes.
94 m = re.search("# Suppression for Error #([0-9]+)", line.strip())
99 # OK, now read the next suppression:
118 suppression = generated_suppressions[error_id]
119 ret.append(DrMemoryError(report, suppression, testcase))