/external/webkit/WebKitTools/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...] |
run-webkit-tests | 238 -l|--leaks Enable leaks checking 265 -m|--merge-leak-depth arg Merges leak callStacks and prints the number of unique leaks beneath a callstack depth of arg. Defaults to 5. 283 'leaks|l' => \$shouldCheckLeaks, [all...] |
/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/opencore/oscl/oscl/osclproc/src/ |
oscl_init.cpp | 121 //Check for memory leaks before cleaning up OsclMem. 136 fprintf(aFile, " ERROR: Memory Leaks! numAllocs %d, numBytes %d\n", stats->numAllocs, stats->numBytes); 139 uint32 leaks = auditCB.pAudit->MM_GetNumAllocNodes(); 140 if (leaks != 0) 142 fprintf(aFile, "ERROR: %d Memory leaks detected!\n", leaks); 143 MM_AllocQueryInfo*info = auditCB.pAudit->MM_CreateAllocNodeInfo(leaks); 144 uint32 leakinfo = auditCB.pAudit->MM_GetAllocNodeInfo(info, leaks, 0); 145 if (leakinfo != leaks)
|
/system/core/include/cutils/ |
process_name.h | 31 * Warning: This leaks a string every time you call it. Use judiciously!
|
/frameworks/base/docs/html/resources/articles/ |
avoiding-memory-leaks.jd | 1 page.title=Avoiding Memory Leaks 12 leaks issues in Android applications and they are most of the time due 29 label.setText("Leaks are bad"); 57 label.setText("Leaks are bad"); 68 <p>This code is very fast and also very wrong; it leaks the first activity 85 <p>There are two easy ways to avoid context-related memory leaks. The most 97 <p>In summary, to avoid context-related memory leaks, remember the following:</p> 108 <li>A garbage collector is not an insurance against memory leaks</li>
|
/external/icu4c/common/ |
locmap.h | 19 * 09/18/00 george Removed the memory leaks.
|
ucln.h | 44 * has its cache flushed. This will prevent any memory leaks due to
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_leaks.h | 27 /* Global variables used to check leaks in code using SDL */
|
/external/opencore/doc/oscl_html/ |
oscl__mem__auto__ptr_8h.html | 9 <hr><h1>oscl_mem_auto_ptr.h File Reference</h1>This file defines the oscl_mem_auto_ptr template class. This class is used to avoid any potential memory leaks that may arise while returning from methods in case of error. 27 This file defines the oscl_mem_auto_ptr template class. This class is used to avoid any potential memory leaks that may arise while returning from methods in case of error.
|
oscl__exclusive__ptr_8h.html | 9 <hr><h1>oscl_exclusive_ptr.h File Reference</h1>This file defines the <a class="el" href="classOsclExclusivePtr.html">OsclExclusivePtr</a> template class. This class is used to avoid any potential memory leaks that may arise while returning from methods in case of error. 26 This file defines the <a class="el" href="classOsclExclusivePtr.html">OsclExclusivePtr</a> template class. This class is used to avoid any potential memory leaks that may arise while returning from methods in case of error.
|
/external/webkit/WebCore/workers/ |
WorkerScriptLoaderClient.h | 38 // This will cause leaks when we support nested workers.
|
/external/opencore/engines/2way/test/src/ |
test_engine.cpp | 796 //Check for memory leaks before cleaning up OsclMem. 798 uint32 leaks = 0; local 811 fprintf(fileoutput, " ERROR: Memory Leaks! numAllocs %d, numBytes %d\n", stats->numAllocs, stats->numBytes); 814 leaks = auditCB.pAudit->MM_GetNumAllocNodes(); 815 if (leaks != 0) 817 fprintf(fileoutput, "ERROR: %d Memory leaks detected!\n", leaks); 818 MM_AllocQueryInfo*info = auditCB.pAudit->MM_CreateAllocNodeInfo(leaks); 819 uint32 leakinfo = auditCB.pAudit->MM_GetAllocNodeInfo(info, leaks, 0); 820 if (leakinfo != leaks) [all...] |
/external/icu4c/test/intltest/ |
intltest.h | 80 virtual UBool setLeaks( UBool leaks = TRUE ); 193 UBool leaks; member in class:IntlTest 227 UBool run_phase2( char* name, char* par ); // internally, supports reporting memory leaks
|
intltest.cpp | 510 leaks = FALSE; 575 UBool rval = this->leaks; 576 this->leaks = leaksVal; 985 // being run a second time local to a specific method in order to report only actual leaks 987 IntlTest::run_phase2( char* name, char* par ) // supports reporting memory leaks 1012 UBool leaks = FALSE; local 1042 else if (strcmp("leaks", str) == 0 || 1044 leaks = TRUE; 1074 "### exhaustive (e), leaks (l), prop:<propery>=<value>, \n" 1099 major.setLeaks( leaks ); [all...] |
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/ |
config.json | 68 { "name": "SnowLeopard Intel Leaks", "type": "BuildAndTestLeaks", "builddir": "snowleopard-intel-leaks", 133 "SnowLeopard Intel Release (Build)", "SnowLeopard Intel Leaks",
|
/external/e2fsprogs/intl/ |
relocatable.h | 53 /* Memory management: relocate() leaks memory, because it has to construct
|
/external/icu4c/test/cintltst/ |
cintltst.h | 49 * LEAKS so be aware of that.
|
/external/webkit/JavaScriptCore/wtf/ |
PtrAndFlags.h | 58 void* m_leaksPtr; // Only used to allow tools like leaks on OSX to detect that the memory is referenced.
|
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/ |
steps.py | 94 command = ["perl", "./WebKitTools/Scripts/run-webkit-tests", "--no-launch-safari", "--no-sample-on-timeout", "--leaks", "--results-directory", "layout-test-results"] 101 leakLines = [line for line in lines if line.find('total leaks found!') >= 0] 108 if key.find('total leaks found!') >= 0: 109 key = 'allocations found by "leaks" tool'
|
/frameworks/base/test-runner/src/android/test/ |
ActivityTestCase.java | 52 * to scrub out any class variables. This protects against memory leaks in the case where a
|
/external/opencore/engines/adapters/player/framemetadatautility/test/src/ |
test_pv_frame_metadata_utility.cpp | 804 //Check for memory leaks before cleaning up OsclMem. 820 fprintf(file, " ERROR: Memory Leaks! numAllocs %d, numBytes %d\n", stats->numAllocs, stats->numBytes); 823 uint32 leaks = auditCB.pAudit->MM_GetNumAllocNodes(); local 824 if (leaks != 0) 828 fprintf(file, "ERROR: %d Memory leaks detected!\n", leaks); 829 MM_AllocQueryInfo*info = auditCB.pAudit->MM_CreateAllocNodeInfo(leaks); 830 uint32 leakinfo = auditCB.pAudit->MM_GetAllocNodeInfo(info, leaks, 0); 831 if (leakinfo != leaks) [all...] |
/external/dbus/doc/ |
dbus-test-plan.xml | 218 <sect2 id="leaks-and-other-stuff"> 219 <title>Memory leaks and code robustness</title> 222 for, for example things like memory leaks and out-of-bounds
|
/external/astl/tests/ |
common.h | 95 // These class allocate chunks to detect memory leaks.
|
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_exclusive_ptr.h | 35 * used to avoid any potential memory leaks that may arise while returning 58 * leaks in a class or a method, due to "not remembering to delete" variables 198 * leaks in a class or a method, due to "not remembering to delete" variables 338 * leaks in a class or a method, due to "not remembering to delete" variables
|