Home | History | Annotate | Download | only in Scripts

Lines Matching refs:line

133     #   We treat every line except for  Process 00000: and Leak: as optional
135 # Newer versions of the leaks output have a header section at the top, with the first line describing the version of the output format.
151 for my $line (@$leaksOutput) {
152 next if $line =~ /^Process/;
153 next if $line =~ /^node buffer added/;
155 if ($line =~ /^Leak: /) {
156 my ($address) = ($line =~ /Leak: ([[:xdigit:]x]+)/);
162 my ($size) = ($line =~ /size=([[:digit:]]+)/);
168 my ($type) = ($line =~ /'([^']+)'/); #'
178 "leaksOutput" => $line
182 $leakList[$#leakList]->{"leaksOutput"} .= $line;
183 if ($line =~ /Call stack:/) {
184 $leakList[$#leakList]->{"callStack"} = $line;