├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── INSTALL ├── Makefile ├── NEWS ├── README ├── THANKS ├── TODO ├── VERSION ├── helpers ├── leak-analyze-addr2line ├── leak-analyze-gdb └── leak-check ├── libleaktracer ├── include │ ├── LeakTracer_l.hpp │ ├── MapMemoryInfo.hpp │ ├── MemoryTrace.hpp │ ├── Mutex.hpp │ ├── MutexLock.hpp │ ├── ObjectsPool.hpp │ └── leaktracer.h └── src │ ├── AllocationHandlers.cpp │ ├── LeakTracerC.c │ └── MemoryTrace.cpp └── tests └── test.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | leaks.out 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /helpers/leak-analyze-addr2line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/helpers/leak-analyze-addr2line -------------------------------------------------------------------------------- /helpers/leak-analyze-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/helpers/leak-analyze-gdb -------------------------------------------------------------------------------- /helpers/leak-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/helpers/leak-check -------------------------------------------------------------------------------- /libleaktracer/include/LeakTracer_l.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/LeakTracer_l.hpp -------------------------------------------------------------------------------- /libleaktracer/include/MapMemoryInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/MapMemoryInfo.hpp -------------------------------------------------------------------------------- /libleaktracer/include/MemoryTrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/MemoryTrace.hpp -------------------------------------------------------------------------------- /libleaktracer/include/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/Mutex.hpp -------------------------------------------------------------------------------- /libleaktracer/include/MutexLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/MutexLock.hpp -------------------------------------------------------------------------------- /libleaktracer/include/ObjectsPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/ObjectsPool.hpp -------------------------------------------------------------------------------- /libleaktracer/include/leaktracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/include/leaktracer.h -------------------------------------------------------------------------------- /libleaktracer/src/AllocationHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/src/AllocationHandlers.cpp -------------------------------------------------------------------------------- /libleaktracer/src/LeakTracerC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/src/LeakTracerC.c -------------------------------------------------------------------------------- /libleaktracer/src/MemoryTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/libleaktracer/src/MemoryTrace.cpp -------------------------------------------------------------------------------- /tests/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanpfei/LeakTracer/HEAD/tests/test.cc --------------------------------------------------------------------------------