Home | History | Annotate | Download | only in Scripts

Lines Matching refs:line

30 # based on total number of bytes allocated, and filtering based on command-line
71 my $line = $file[$i];
76 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/);
84 ($byteCount) = ($line =~ /Leak: [x[:xdigit:]]* size=(\d+)/);
87 while (!($line =~ "Call stack: ")) {
89 $line = $file[$i];
100 ($byteCount) = ($line =~ /Key: (?:\d+), (\d+) bytes/);
102 $line = $file[++$i];
105 if ($line =~ /\): (.*)$/) {
110 $line = $file[++$i];
112 $line = join(" | ", @tempStack);
121 next if ($grepRegexp && !($line =~ $grepRegexp));
126 $callstackBegin = length($line);
128 my $rindexResult = rindex($line, "|", $callstackBegin - 1);
134 $callstackBegin = index($line, "|");
137 my $callstack = substr($line, $callstackBegin + 2); # + 2 skips "| "