Lines Matching full:leak
3 /*--- The leak checker. mc_leakcheck.c ---*/
53 /*--- An overview of leak checking. ---*/
56 // Leak-checking is a directed-graph traversal problem. The graph has
105 // --follow-interior-pointers. By default it would be off, the leak checker
150 // ==20397== by 0x400521: mk (leak-cases.c:49)
151 // ==20397== by 0x400578: main (leak-cases.c:72)
156 // ==20397== by 0x400521: mk (leak-cases.c:49)
157 // ==20397== by 0x400580: main (leak-cases.c:72)
172 // ==20397== by 0x400521: mk (leak-cases.c:49)
173 // ==20397== by 0x400580: main (leak-cases.c:72)
202 // if --leak-check=full. We also print summary numbers.
232 // start-pointers and interior-pointers the same for direct/indirect leak
237 // Define to debug the memory-leak-detector.
421 /*--- The leak
424 // Holds extra info about each block during leak checking.
439 // lc_chunks is initialised during leak search. It is kept after leak search
459 // Array of sorted loss record (produced during last leak search).
464 // The recorded leak errors must be output using a logic based on this delta_mode.
680 // 1. Leak check mode (searched == 0).
910 // --leak-check=yes.
911 // - We show all non-suppressed loss records if --leak-check=yes and
974 // loss_records from the previous leak search. The old_*
976 // leak check delta mode
992 // move the leak sizes to old_* and zero the current sizes
993 // for next leak search
1122 VG_(umsg)("LEAK SUMMARY:\n");
1154 VG_(umsg)("Rerun with --leak-check=full to see details "
1165 VG_(umsg)("To see them, rerun with: --leak-check=full "
1213 VG_(umsg)("Can't print block list : no valid leak search result\n");
1218 VG_(umsg)("Can't print obsolete block list : redo a leak search first\n");
1356 // forget the previous recorded LossRecords as next leak search
1359 // (at least when leak decreases are requested)
1382 // for leak-checking purposes. This is a hack and probably should be done
1518 // calls MC_(print_block_list)). lr_table also used for delta leak reporting
1519 // between this leak search and the next leak search.