Home | History | Annotate | Download | only in src

Lines Matching refs:leaks

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.");
838 // libpthread has a lot of small "system" leaks we don't care about.
852 // JVM has a lot of leaks we don't care about.
854 // The JVM leaks java.util.zip.Inflater after loading classes.
858 // library loader leaks some "system" heap
872 // Using depth 2 here should not mask real leaks because ld-linux.so
1124 // treated as leaks.
1230 "might report false leaks");
1331 "will be reported as leaks");
1471 // we might miss some real heap memory leaks.
1617 // We want to check for leaks of objects allocated during global
1619 // create a baseline snapshot and hence check for leaks of objects
1623 // We want to ignore leaks of objects allocated during global
1660 // about the reported leaks.
1680 "the leaks, try running THIS shell command:\n\n"
1685 "If you are still puzzled about why the leaks are "
1692 "it might help find leaks more repeatably\n",
1709 // Once we've checked for leaks and symbolized the results once, it's
1718 HeapProfileTable::Snapshot* leaks = NULL;
1742 // can detect leaks in the heap-leak-checket itself
1759 leaks = heap_profile->NonLiveSnapshot(base);
1761 inuse_bytes_increase_ = static_cast<ssize_t>(leaks->total().alloc_size);
1762 inuse_allocs_increase_ = static_cast<ssize_t>(leaks->total().allocs);
1763 if (leaks->Empty()) {
1764 heap_profile->ReleaseSnapshot(leaks);
1765 leaks = NULL;
1767 // We can only check for internal leaks along the no-user-leak
1788 RAW_LOG(WARNING, "Found no leaks without pointer alignment: "
1792 RAW_LOG(INFO, "Found leaks without pointer alignment as well: "
1793 "unaligned pointers must not be the cause of leaks.");
1795 "to diagnose the leaks.");
1801 if (leaks != NULL) {
1807 if (leaks == NULL) {
1810 "Found no leaks without max_pointer_offset restriction: "
1818 "No leaks found for check \"%s\" "
1844 leaks->ReportLeaks(name_, pprof_file, true); // true = should_symbolize
1846 leaks->ReportLeaks(name_, pprof_file, false);
1849 leaks->ReportIndividualObjects();
1856 heap_profile->ReleaseSnapshot(leaks);
1861 return (leaks == NULL);
1898 // of cleaners to be run before leaks checking.
2068 // We test this to make sure we are indeed checking for leaks.
2108 // debugallocation.cc to 100M to make it less likely for real leaks to
2110 // Running a test with --malloc_reclaim_memory=0 would help find leaks even
2135 RAW_VLOG(10, "Checking for whole-program memory leaks");
2160 RAW_LOG(FATAL, "Whole-program memory leaks found.");
2163 "because of whole-program memory leaks");