HomeSort by relevance Sort by last modified time
    Searched refs:leak (Results 51 - 75 of 83) sorted by null

1 23 4

  /external/chromium_org/base/
tools_sanity_unittest.cc 80 // A memory leak detector should report an error in this test.
83 int* volatile leak = new int[256]; // Leak some memory intentionally. local
84 leak[4] = 1; // Make sure the allocated memory is used.
tracked_objects.h 571 // using the data structures, then the |leak| argument should be passed in as
575 // then you can pass in a |leak| value of false, and this function will
578 static void ShutdownSingleThreadedCleanup(bool leak);
    [all...]
tracked_objects.cc 413 child = new Births(location, *this); // Leak this.
804 void ThreadData::ShutdownSingleThreadedCleanup(bool leak) {
816 // To be clean, break apart the retired worker list (though we leak them).
832 // call this function, we may sometimes leak all the data structures we
834 if (leak) {
  /external/valgrind/main/memcheck/tests/
big_blocks_freed_list.stderr.exp 47 For a detailed leak analysis, rerun with: --leak-check=full
sigkill.stderr.exp 196 For a detailed leak analysis, rerun with: --leak-check=full
  /frameworks/base/core/java/android/app/
LoadedApk.java 538 IntentReceiverLeaked leak = new IntentReceiverLeaked( local
543 leak.setStackTrace(rd.getLocation().getStackTrace());
544 Slog.e(ActivityThread.TAG, leak.getMessage(), leak);
546 StrictMode.onIntentReceiverLeaked(leak);
563 ServiceConnectionLeaked leak = new ServiceConnectionLeaked( local
566 leak.setStackTrace(sd.getLocation().getStackTrace());
567 Slog.e(ActivityThread.TAG, leak.getMessage(), leak);
569 StrictMode.onServiceConnectionLeaked(leak);
    [all...]
  /frameworks/base/core/java/android/view/
WindowManagerGlobal.java 323 WindowLeaked leak = new WindowLeaked( local
326 leak.setStackTrace(root.getLocation().getStackTrace());
327 Log.e(TAG, "", leak);
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java 165 public void leak() throws RemoteException { method in class:ParcelFileDescriptorPeer
ParcelFileDescriptorProcessTest.java 237 blue.leak();
  /external/chromium_org/v8/test/mjsunit/
leakcheck.js 29 * This test is run with leak detection when running special tests.
string-replace-with-empty.js 67 // a memory leak. This makes valgrind happy.
error-constructors.js 70 // through a getter can leak error objects from different
  /external/chromium_org/v8/test/mjsunit/regress/
consolidated-holey-load.js 40 assertEquals(undefined, foo(c)); // Elided hole check will leak the hole.
  /external/v8/test/mjsunit/
leakcheck.js 29 * This test is run with leak detection when running special tests.
string-replace-with-empty.js 67 // a memory leak. This makes valgrind happy.
  /external/chromium_org/third_party/skia/src/animator/
SkAnimator.cpp 662 for (SkDisplayable** leak = SkDisplayable::fAllocations.begin(); leak < SkDisplayable::fAllocations.end(); leak++)
663 SkDebugf("%08x %s\n", *leak, (*leak)->id);
  /external/skia/src/animator/
SkAnimator.cpp 662 for (SkDisplayable** leak = SkDisplayable::fAllocations.begin(); leak < SkDisplayable::fAllocations.end(); leak++)
663 SkDebugf("%08x %s\n", *leak, (*leak)->id);
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-symbols.js 39 // No symbols should leak to proxy traps.
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 163 ThreadLeak leak = {tctx, 1}; local
164 leaks.PushBack(leak);
  /external/elfutils/tests/
Makefile.am 61 dwfl-bug-addr-overflow arls dwfl-bug-fd-leak \
86 dwfl-bug-fd-leak dwfl-bug-report \
  /external/compiler-rt/lib/lsan/
lsan_common.cc 11 // Implementation of common leak checking functionality.
436 Leak leak = { /* hit_count */ 1, leaked_size, stack_trace_id,
438 leaks_.push_back(leak);
441 static bool LeakComparator(const Leak &leak1, const Leak &leak2) {
460 Printf("The %zu largest leak(s):\n", num_leaks_to_print);
465 Printf("%s leak of %zu byte(s) in %zu object(s) allocated from:\n",
475 Printf("Omitting %zu more leak(s).\n", remaining);
  /external/llvm/test/
Makefile 41 VALGRIND := valgrind --tool=memcheck --quiet --trace-children=yes --error-exitcode=3 --leak-check=full $(VALGRIND_EXTRA_ARGS)
  /external/libpng/
CHANGES 203 fixed memory leak in pngwrite.c (free info_ptr->text) (Glenn R-P)
516 Added code in pngwrite.c to free info_ptr->text[i].key to stop a memory leak.
    [all...]
  /art/
Android.mk 155 $(call run-host-gtests-with,valgrind --leak-check=full)
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 607 will be no memory leak. }

Completed in 771 milliseconds

1 23 4