HomeSort by relevance Sort by last modified time
    Searched refs:Leak (Results 1 - 5 of 5) sorted by null

  /external/webkit/Tools/Scripts/
run-leaks 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.")
    [all...]
parse-malloc-history 79 # Leak: 0x0ac3ca40 size=48
84 ($byteCount) = ($line =~ /Leak: [x[:xdigit:]]* size=(\d+)/);
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksParserWorker.js 39 var match = /^Leak:.*\ssize=(\d+)\s/.exec(line);
67 // This function creates a fake "profile" from a set of leak stacks. "selfTime" is the number of
74 leaks.forEach(function(leak) {
75 leak.stack.reduce(function(node, frame, index, array) {
86 childNode.selfTime += leak.size;
87 childNode.totalTime += leak.size;
  /external/valgrind/main/memcheck/
mc_errors.c 244 // A memory leak.
249 } Leak;
718 UInt n_this_record = extra->Err.Leak.n_this_record;
719 UInt n_total_records = extra->Err.Leak.n_total_records;
720 LossRecord* lr = extra->Err.Leak.lr;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 160 ErrorLeak, // A memory leak due to excessive reference counts.
161 ErrorLeakReturned, // A memory leak due to the returning method not having
    [all...]

Completed in 528 milliseconds