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

  /external/v8/tools/
run-valgrind.py 31 # stderr for memory leaks.
62 leaks = [] variable
65 leaks.append(line)
71 if len(leaks) < 2 or len(leaks) > 3:
76 # No leaks found.
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksParserWorker.js 36 var leaks = [];
48 leaks.push({ size: currentSize, stack: line.split(" | ").slice(1).map(function(str) { return str.trim(); }) });
51 return leaks;
70 // the number of leaks that occurred in or beneath this function).
72 _incorporateLeaks: function(leaks) {
74 leaks.forEach(function(leak) {
RecentBuildsLoader.js 53 var match = /^(\d+) total leaks found!$/.exec(strings[stringIndex]);
  /external/webkit/Tools/Scripts/
run-leaks 29 # Script to run the Mac OS X leaks tool with more expressive '-exclude' lists.
47 " --exclude-callstack regexp Exclude leaks whose call stacks match the regular expression 'regexp'.\n" .
48 " --exclude-type regexp Exclude leaks whose data types match the regular expression 'regexp'.\n" .
73 # Run leaks tool.
98 print "$excludeCount leaks excluded (not printed)\n";
106 # Returns the output of the leaks tool in list form.
111 my @leaksOutput = `leaks $pidOrExecutableName`;
113 reportError("Error running leaks tool.");
127 # Process 00000: XX leaks for XXX total leaked bytes.
135 # Newer versions of the leaks output have a header section at the top, with the first line describing the version of the output (…)
    [all...]
old-run-webkit-tests 294 -l|--leaks Enable leaks checking
321 -m|--merge-leak-depth arg Merges leak callStacks and prints the number of unique leaks beneath a callstack depth of arg. Defaults to 5.
342 'leaks|l' => \$shouldCheckLeaks,
    [all...]
  /external/icu4c/test/intltest/
intltest.h 111 virtual UBool setLeaks( UBool leaks = TRUE );
225 UBool leaks; member in class:IntlTest
262 UBool run_phase2( char* name, char* par ); // internally, supports reporting memory leaks
intltest.cpp 514 leaks = FALSE;
584 UBool rval = this->leaks;
585 this->leaks = leaksVal;
1051 // being run a second time local to a specific method in order to report only actual leaks
1053 IntlTest::run_phase2( char* name, char* par ) // supports reporting memory leaks
1078 UBool leaks = FALSE; local
1109 else if (strcmp("leaks", str) == 0 ||
1111 leaks = TRUE;
1153 "### exhaustive (e), leaks (l), -x xmlfile.xml, prop:<propery>=<value>, \n"
1181 major.setLeaks( leaks );
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 354 FT_ULong leaks = 0; local
377 leaks += node->size;
422 leaks, leak_count );
424 printf( "FreeType: no memory leaks detected\n" );
  /external/v8/test/mjsunit/
error-constructors.js 53 // name property with a getter can leaks error objects from different
  /external/qemu/
block.h 102 int leaks; member in struct:BdrvCheckResult
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 111 invoked to avoid memory leaks. *)
  /frameworks/base/docs/html/resources/
resources-data.js 47 path: 'articles/avoiding-memory-leaks.html',
49 en: 'Avoiding Memory Leaks'
52 en: 'Mobile devices often have limited memory, and memory leaks can cause your application to waste this valuable resource without your knowledge. This article provides tips to help you avoid common causes of memory leaks on the Android platform.'