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

1 2

  /external/chromium_org/tools/memory_watcher/scripts/
memprof.pl 39 my %leaks = ();
54 $leaks{"UNACCOUNTED"} += $bytes;
83 $leaks{$pig} += $bytes;
93 my @keys = sort { $leaks{$b} <=> $leaks{$a} }keys %leaks;
96 printf "%11s\t%3.2f%%\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $key;
97 $sum += $leaks{$key};
memtrace.pl 33 my %leaks = ();
56 $leaks{$location_blame} += $location_bytes;
123 my @keys = sort { $leaks{$b} <=> $leaks{$a} }keys %leaks;
127 printf "%11s\t%3.2f%%\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $key;
128 $sum += $leaks{$key};
summary.pl 18 my %leaks = ();
133 $leaks{$location_blame} += $bytes;
138 my @keys = sort { $leaks{$b} <=> $leaks{$a} }keys %leaks;
141 printf "%11s\t(%3.2f%%)\t%s\n", comma_print($leaks{$key}), (100* $leaks{$key} / $total_bytes), $key;
142 $sum += $leaks{$key};
finditem.pl 10 my %leaks = ();
  /external/chromium_org/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/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/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 153 Vector<ThreadLeak> &leaks = *(Vector<ThreadLeak>*)arg; local
157 for (uptr i = 0; i < leaks.Size(); i++) {
158 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) {
159 leaks[i].count++;
164 leaks.PushBack(leak);
182 Vector<ThreadLeak> leaks(MBlockScopedBuf);
184 MaybeReportThreadLeak, &leaks);
185 for (uptr i = 0; i < leaks.Size(); i++) {
187 rep.AddThread(leaks[i].tctx);
188 rep.SetCount(leaks[i].count)
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu4c/test/intltest/
intltest.h 137 virtual UBool setLeaks( UBool leaks = TRUE );
273 UBool leaks; member in class:IntlTest
316 UBool run_phase2( char* name, char* par ); // internally, supports reporting memory leaks
intltest.cpp 530 leaks = FALSE;
607 UBool rval = this->leaks;
608 this->leaks = leaksVal;
1077 // being run a second time local to a specific method in order to report only actual leaks
1079 IntlTest::run_phase2( char* name, char* par ) // supports reporting memory leaks
1105 UBool leaks = FALSE; local
1136 else if (strcmp("leaks", str) == 0 ||
1138 leaks = TRUE;
1183 "### exhaustive (e), leaks (l), -x xmlfile.xml, prop:<propery>=<value>, \n"
1212 major.setLeaks( leaks );
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-checker.cc 171 "in tracking down leaks where only a small fraction of "
177 "and registers are not reported as leaks");
187 // The larger it can be, the lesser is the chance of missing real leaks.
200 // and make it probabilistically more likely to miss leaks
222 " false leaks that will disappear if the heap checker delays"
228 "Exit code to return if any leaks were detected.");
1718 HeapProfileTable::Snapshot* leaks = NULL; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-checker.cc 171 "in tracking down leaks where only a small fraction of "
177 "and registers are not reported as leaks");
187 // The larger it can be, the lesser is the chance of missing real leaks.
200 // and make it probabilistically more likely to miss leaks
222 " false leaks that will disappear if the heap checker delays"
228 "Exit code to return if any leaks were detected.");
1718 HeapProfileTable::Snapshot* leaks = NULL; local
    [all...]
  /external/chromium_org/third_party/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/freetype/src/base/
ftdbgmem.c 348 FT_ULong leaks = 0; local
373 leaks += node->size;
418 leaks, leak_count );
420 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. *)
  /external/chromium_org/tools/valgrind/
memcheck_analyze.py 408 show_all_leaks: Whether to show even less important leaks
547 # Ignore "possible" leaks for now by default.
  /external/chromium_org/third_party/sqlite/src/test/
tester.tcl 576 puts "All memory allocations freed - no leaks"
594 puts "Writing leaks.sql..."
596 memdebug_log_sql leaks.sql
    [all...]
  /external/qemu/block/
qcow2-refcount.c     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
jquery.js     [all...]
  /bionic/libc/
Android.mk 925 # allocation checking (including memory leaks, buffer overwrites, etc.)
  /external/v8/src/
messages.js     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]

Completed in 1306 milliseconds

1 2