├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── detail.h ├── leaker.cpp ├── leaker2.cpp ├── lotsa_locals.cpp ├── simple_boost.cpp ├── sort_random_sequence.cpp └── stl_with_lambda.cpp ├── gdb_util ├── __init__.py ├── backtrace.py ├── boost_filter.py ├── combined_filter_decorator.py ├── instrument_srs.py ├── leak_dfs.py ├── libclang_helpers.py ├── rot13_framedecorator.py ├── stackframe.py ├── step_through_boost.py ├── stepping.py └── vgleaks.py ├── libclang_test.cpp └── libclang_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/README.md -------------------------------------------------------------------------------- /examples/detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/detail.h -------------------------------------------------------------------------------- /examples/leaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/leaker.cpp -------------------------------------------------------------------------------- /examples/leaker2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/leaker2.cpp -------------------------------------------------------------------------------- /examples/lotsa_locals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/lotsa_locals.cpp -------------------------------------------------------------------------------- /examples/simple_boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/simple_boost.cpp -------------------------------------------------------------------------------- /examples/sort_random_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/sort_random_sequence.cpp -------------------------------------------------------------------------------- /examples/stl_with_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/examples/stl_with_lambda.cpp -------------------------------------------------------------------------------- /gdb_util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/__init__.py -------------------------------------------------------------------------------- /gdb_util/backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/backtrace.py -------------------------------------------------------------------------------- /gdb_util/boost_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/boost_filter.py -------------------------------------------------------------------------------- /gdb_util/combined_filter_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/combined_filter_decorator.py -------------------------------------------------------------------------------- /gdb_util/instrument_srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/instrument_srs.py -------------------------------------------------------------------------------- /gdb_util/leak_dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/leak_dfs.py -------------------------------------------------------------------------------- /gdb_util/libclang_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/libclang_helpers.py -------------------------------------------------------------------------------- /gdb_util/rot13_framedecorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/rot13_framedecorator.py -------------------------------------------------------------------------------- /gdb_util/stackframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/stackframe.py -------------------------------------------------------------------------------- /gdb_util/step_through_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/step_through_boost.py -------------------------------------------------------------------------------- /gdb_util/stepping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/stepping.py -------------------------------------------------------------------------------- /gdb_util/vgleaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/gdb_util/vgleaks.py -------------------------------------------------------------------------------- /libclang_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/libclang_test.cpp -------------------------------------------------------------------------------- /libclang_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefftrull/gdb_python_api/HEAD/libclang_test.py --------------------------------------------------------------------------------