Home | History | Annotate | Download | only in Scripts

Lines Matching refs:Leak

93     foreach my $leak (@$leakList) {
94 print $leak->{"leaksOutput"};
128 # Leak: 0x00000000 size=1234 [instance of 'blah']
131 # Call stack: leak_caller() | leak() | malloc
133 # We treat every line except for Process 00000: and Leak: as optional
146 reportError("Could not parse leak count reported by leaks tool.");
155 if ($line =~ /^Leak: /) {
156 my ($address) = ($line =~ /Leak: ([[:xdigit:]x]+)/);
158 reportError("Could not parse Leak address.");
164 reportError("Could not parse Leak size.");
173 my %leak = (
180 push(@leakList, \%leak);
191 reportError("Parsed leak count($parsedLeakCount) does not match leak count reported by leaks tool($leakCount).");