├── .gitignore ├── Android.mk ├── Makefile ├── README ├── android ├── README └── patches │ └── 0001-build-system-Add-support-for-building-traced-targets.patch ├── ccwrap.py ├── demo ├── Android.mk ├── Makefile ├── demo.cpp ├── other_code.cpp └── other_code.h ├── include ├── array_length.h ├── bool.h ├── cached_file.h ├── colors.h ├── config.h ├── halt.h ├── list_template.h ├── macros.h ├── min_max.h ├── object_pool.h ├── trace_defs.h ├── trace_lib.h ├── trace_metadata_util.h ├── trace_parser.h └── trace_user.h ├── interactive_reader ├── Bunch.py ├── Makefile ├── _CTraceParser.py ├── completers.py ├── ui.py └── widgets.py ├── ldwrap.py ├── libtrace ├── Android.mk ├── cached_file.c ├── halt.c ├── trace_metadata_util.c ├── trace_parser.c └── trace_user.c ├── scripts └── fixup_traces.py ├── trace_dumper ├── Android.mk ├── filesystem.c ├── filesystem.h ├── trace_dumper.c └── trace_user_stubs.c ├── trace_instrumentor ├── TraceCall.h └── trace_instrumentor.cpp └── trace_reader ├── Android.mk └── simple_trace_reader.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/README -------------------------------------------------------------------------------- /android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/android/README -------------------------------------------------------------------------------- /android/patches/0001-build-system-Add-support-for-building-traced-targets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/android/patches/0001-build-system-Add-support-for-building-traced-targets.patch -------------------------------------------------------------------------------- /ccwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/ccwrap.py -------------------------------------------------------------------------------- /demo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/demo/Android.mk -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/demo/demo.cpp -------------------------------------------------------------------------------- /demo/other_code.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/other_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/demo/other_code.h -------------------------------------------------------------------------------- /include/array_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/array_length.h -------------------------------------------------------------------------------- /include/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/bool.h -------------------------------------------------------------------------------- /include/cached_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/cached_file.h -------------------------------------------------------------------------------- /include/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/colors.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/config.h -------------------------------------------------------------------------------- /include/halt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/halt.h -------------------------------------------------------------------------------- /include/list_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/list_template.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/min_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/min_max.h -------------------------------------------------------------------------------- /include/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/object_pool.h -------------------------------------------------------------------------------- /include/trace_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/trace_defs.h -------------------------------------------------------------------------------- /include/trace_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/trace_lib.h -------------------------------------------------------------------------------- /include/trace_metadata_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/trace_metadata_util.h -------------------------------------------------------------------------------- /include/trace_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/trace_parser.h -------------------------------------------------------------------------------- /include/trace_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/include/trace_user.h -------------------------------------------------------------------------------- /interactive_reader/Bunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/Bunch.py -------------------------------------------------------------------------------- /interactive_reader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/Makefile -------------------------------------------------------------------------------- /interactive_reader/_CTraceParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/_CTraceParser.py -------------------------------------------------------------------------------- /interactive_reader/completers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/completers.py -------------------------------------------------------------------------------- /interactive_reader/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/ui.py -------------------------------------------------------------------------------- /interactive_reader/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/interactive_reader/widgets.py -------------------------------------------------------------------------------- /ldwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/ldwrap.py -------------------------------------------------------------------------------- /libtrace/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/Android.mk -------------------------------------------------------------------------------- /libtrace/cached_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/cached_file.c -------------------------------------------------------------------------------- /libtrace/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/halt.c -------------------------------------------------------------------------------- /libtrace/trace_metadata_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/trace_metadata_util.c -------------------------------------------------------------------------------- /libtrace/trace_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/trace_parser.c -------------------------------------------------------------------------------- /libtrace/trace_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/libtrace/trace_user.c -------------------------------------------------------------------------------- /scripts/fixup_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/scripts/fixup_traces.py -------------------------------------------------------------------------------- /trace_dumper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_dumper/Android.mk -------------------------------------------------------------------------------- /trace_dumper/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_dumper/filesystem.c -------------------------------------------------------------------------------- /trace_dumper/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_dumper/filesystem.h -------------------------------------------------------------------------------- /trace_dumper/trace_dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_dumper/trace_dumper.c -------------------------------------------------------------------------------- /trace_dumper/trace_user_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_dumper/trace_user_stubs.c -------------------------------------------------------------------------------- /trace_instrumentor/TraceCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_instrumentor/TraceCall.h -------------------------------------------------------------------------------- /trace_instrumentor/trace_instrumentor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_instrumentor/trace_instrumentor.cpp -------------------------------------------------------------------------------- /trace_reader/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_reader/Android.mk -------------------------------------------------------------------------------- /trace_reader/simple_trace_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yotamr/traces/HEAD/trace_reader/simple_trace_reader.c --------------------------------------------------------------------------------