| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_rtl_thread.cc | 163 Vector<ThreadLeak> &leaks = *(Vector<ThreadLeak>*)arg; local 167 for (uptr i = 0; i < leaks.Size(); i++) { 168 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) { 169 leaks[i].count++; 174 leaks.PushBack(leak); 214 Vector<ThreadLeak> leaks; local 216 MaybeReportThreadLeak, &leaks); 217 for (uptr i = 0; i < leaks.Size(); i++) { 219 rep.AddThread(leaks[i].tctx, true); 220 rep.SetCount(leaks[i].count) [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/lsan/ |
| lsan_common.h | 30 // ratio on large leaks. But we still want to have it for some 32 bit arches 211 // Aggregates leaks by stack trace prefix. 244 LeakedChunks leaks; member in struct:__lsan::CheckForLeaksParam 320 // Return true if LSan has finished leak checking and reported leaks.
|
| lsan_common.cpp | 667 LeakedChunks *leaks = reinterpret_cast<LeakedChunks *>(arg); local 673 leaks->push_back({chunk, m.stack_trace_id(), m.requested_size(), m.tag()}); 716 "Running thread %llu was not suspended. False leaks are possible.\n", 731 ForEachChunk(CollectLeaksCb, ¶m->leaks); 747 Report("ERROR: LeakSanitizer: detected memory leaks\n"); 765 VReport(1, "LeakSanitizer: checking for leaks"); 790 leak_report.AddLeakedChunks(param.leaks); 796 // No indirect leaks to report, so we are done here. 801 Report("WARNING: LeakSanitizer gave up on indirect leaks suppression.\n"); 806 // sure it does not hold indirect leaks [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_rtl_thread.cpp | 40 auto &leaks = *static_cast<Vector<ThreadLeak> *>(arg); local 44 for (uptr i = 0; i < leaks.Size(); i++) { 45 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) { 46 leaks[i].count++; 50 leaks.PushBack({tctx, 1}); 92 Vector<ThreadLeak> leaks; local 94 &leaks); 95 for (uptr i = 0; i < leaks.Size(); i++) { 97 rep.AddThread(leaks[i].tctx, true); 98 rep.SetCount(leaks[i].count) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_rtl_thread.cpp | 46 auto &leaks = *static_cast<Vector<ThreadLeak> *>(arg); local 50 for (uptr i = 0; i < leaks.Size(); i++) { 51 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) { 52 leaks[i].count++; 56 leaks.PushBack({tctx, 1}); 96 Vector<ThreadLeak> leaks; local 98 &leaks); 99 for (uptr i = 0; i < leaks.Size(); i++) { 101 rep.AddThread(leaks[i].tctx, true); 102 rep.SetCount(leaks[i].count) [all...] |
| /src/external/cddl/osnet/dist/cmd/zdb/ |
| zdb.c | 2712 boolean_t leaks = B_FALSE; local 2793 (void) printf("\n\tNo leaks (block sum matches space" 2802 leaks = B_TRUE; 2936 if (leaks)
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Experiment.cc | 3816 long alloc_pkt_id, int64_t net_alloc, uint64_t leaks) 3821 // leaks: leak bytes to attribute to alloc_pkt_id 3829 if (leaks) 3833 leaks = old; 3837 dview->setDataDescriptorValue (PROP_HCUR_LEAKS, alloc_pkt_id, leaks); 3854 uint64_t leaks = dview->getULongValue (PROP_HLEAKED, i); local 3856 update_heapsz_packet (pkt_id_set, dview, alloc_pkt_id, hsize, leaks); 3908 Size leaks = dview->getULongValue (PROP_HCUR_LEAKS, i); local 3909 currentLeaks += leaks;
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Experiment.cc | 3816 long alloc_pkt_id, int64_t net_alloc, uint64_t leaks) 3821 // leaks: leak bytes to attribute to alloc_pkt_id 3829 if (leaks) 3833 leaks = old; 3837 dview->setDataDescriptorValue (PROP_HCUR_LEAKS, alloc_pkt_id, leaks); 3854 uint64_t leaks = dview->getULongValue (PROP_HLEAKED, i); local 3856 update_heapsz_packet (pkt_id_set, dview, alloc_pkt_id, hsize, leaks); 3908 Size leaks = dview->getULongValue (PROP_HCUR_LEAKS, i); local 3909 currentLeaks += leaks;
|