├── .gitignore ├── Documentation ├── .gitignore ├── Makefile ├── asciidoc.conf ├── install-docs.sh.in ├── libtraceevent-commands.txt ├── libtraceevent-cpus.txt ├── libtraceevent-debug.txt ├── libtraceevent-endian_read.txt ├── libtraceevent-event_find.txt ├── libtraceevent-event_get.txt ├── libtraceevent-event_list.txt ├── libtraceevent-event_print.txt ├── libtraceevent-field_find.txt ├── libtraceevent-field_get_val.txt ├── libtraceevent-field_print.txt ├── libtraceevent-field_read.txt ├── libtraceevent-fields.txt ├── libtraceevent-file_endian.txt ├── libtraceevent-filter.txt ├── libtraceevent-func_apis.txt ├── libtraceevent-func_find.txt ├── libtraceevent-handle.txt ├── libtraceevent-header_page.txt ├── libtraceevent-host_endian.txt ├── libtraceevent-kbuffer-create.txt ├── libtraceevent-kbuffer-read.txt ├── libtraceevent-kbuffer-timestamp.txt ├── libtraceevent-kvm-plugin.txt ├── libtraceevent-log.txt ├── libtraceevent-long_size.txt ├── libtraceevent-page_size.txt ├── libtraceevent-parse-files.txt ├── libtraceevent-parse_event.txt ├── libtraceevent-parse_head.txt ├── libtraceevent-plugins.txt ├── libtraceevent-record_parse.txt ├── libtraceevent-reg_event_handler.txt ├── libtraceevent-reg_print_func.txt ├── libtraceevent-set_flag.txt ├── libtraceevent-strerror.txt ├── libtraceevent-tseq.txt ├── libtraceevent.txt ├── manpage-1.72.xsl ├── manpage-base.xsl ├── manpage-bold-literal.xsl ├── manpage-normal.xsl ├── manpage-suppress-sp.xsl └── meson.build ├── LICENSES ├── GPL-2.0 └── LGPL-2.1 ├── Makefile ├── Makefile.meson ├── README ├── check-manpages.sh ├── include ├── asm │ └── bug.h ├── linux │ ├── compiler-gcc.h │ ├── compiler.h │ └── time64.h └── traceevent │ ├── event-parse.h │ ├── event-utils.h │ ├── kbuffer.h │ ├── meson.build │ └── trace-seq.h ├── libtraceevent.pc.template ├── meson.build ├── meson_options.txt ├── plugins ├── Build ├── Makefile ├── dynamic_list.sh ├── meson.build ├── plugin_cfg80211.c ├── plugin_function.c ├── plugin_futex.c ├── plugin_hrtimer.c ├── plugin_jbd2.c ├── plugin_kmem.c ├── plugin_kvm.c ├── plugin_mac80211.c ├── plugin_net.c ├── plugin_sched_switch.c ├── plugin_scsi.c ├── plugin_tlb.c └── plugin_xen.c ├── samples ├── Makefile ├── meson.build └── test-event.c ├── scripts ├── features.mk ├── utilities.mak └── utils.mk ├── src ├── Build ├── Makefile ├── event-parse-api.c ├── event-parse-local.h ├── event-parse.c ├── event-plugin.c ├── kbuffer-parse.c ├── meson.build ├── parse-filter.c ├── parse-utils.c ├── tep_strerror.c └── trace-seq.c ├── test.c └── utest ├── .gitignore ├── Makefile ├── README ├── meson.build ├── trace-utest.c ├── trace-utest.h └── traceevent-utest.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- 1 | *.m 2 | *.3 3 | *.html 4 | -------------------------------------------------------------------------------- /Documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/Makefile -------------------------------------------------------------------------------- /Documentation/asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/asciidoc.conf -------------------------------------------------------------------------------- /Documentation/install-docs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/install-docs.sh.in -------------------------------------------------------------------------------- /Documentation/libtraceevent-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-commands.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-cpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-cpus.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-debug.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-endian_read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-endian_read.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-event_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-event_find.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-event_get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-event_get.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-event_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-event_list.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-event_print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-event_print.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-field_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-field_find.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-field_get_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-field_get_val.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-field_print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-field_print.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-field_read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-field_read.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-fields.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-file_endian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-file_endian.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-filter.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-func_apis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-func_apis.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-func_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-func_find.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-handle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-handle.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-header_page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-header_page.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-host_endian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-host_endian.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-kbuffer-create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-kbuffer-create.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-kbuffer-read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-kbuffer-read.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-kbuffer-timestamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-kbuffer-timestamp.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-kvm-plugin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-kvm-plugin.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-log.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-long_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-long_size.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-page_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-page_size.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-parse-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-parse-files.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-parse_event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-parse_event.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-parse_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-parse_head.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-plugins.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-record_parse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-record_parse.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-reg_event_handler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-reg_event_handler.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-reg_print_func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-reg_print_func.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-set_flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-set_flag.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-strerror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-strerror.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent-tseq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent-tseq.txt -------------------------------------------------------------------------------- /Documentation/libtraceevent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/libtraceevent.txt -------------------------------------------------------------------------------- /Documentation/manpage-1.72.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/manpage-1.72.xsl -------------------------------------------------------------------------------- /Documentation/manpage-base.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/manpage-base.xsl -------------------------------------------------------------------------------- /Documentation/manpage-bold-literal.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/manpage-bold-literal.xsl -------------------------------------------------------------------------------- /Documentation/manpage-normal.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/manpage-normal.xsl -------------------------------------------------------------------------------- /Documentation/manpage-suppress-sp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/manpage-suppress-sp.xsl -------------------------------------------------------------------------------- /Documentation/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Documentation/meson.build -------------------------------------------------------------------------------- /LICENSES/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/LICENSES/GPL-2.0 -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/LICENSES/LGPL-2.1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/Makefile.meson -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/README -------------------------------------------------------------------------------- /check-manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/check-manpages.sh -------------------------------------------------------------------------------- /include/asm/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/asm/bug.h -------------------------------------------------------------------------------- /include/linux/compiler-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/linux/compiler-gcc.h -------------------------------------------------------------------------------- /include/linux/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/linux/compiler.h -------------------------------------------------------------------------------- /include/linux/time64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/linux/time64.h -------------------------------------------------------------------------------- /include/traceevent/event-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/traceevent/event-parse.h -------------------------------------------------------------------------------- /include/traceevent/event-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/traceevent/event-utils.h -------------------------------------------------------------------------------- /include/traceevent/kbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/traceevent/kbuffer.h -------------------------------------------------------------------------------- /include/traceevent/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/traceevent/meson.build -------------------------------------------------------------------------------- /include/traceevent/trace-seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/include/traceevent/trace-seq.h -------------------------------------------------------------------------------- /libtraceevent.pc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/libtraceevent.pc.template -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/meson_options.txt -------------------------------------------------------------------------------- /plugins/Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/Build -------------------------------------------------------------------------------- /plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/Makefile -------------------------------------------------------------------------------- /plugins/dynamic_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/dynamic_list.sh -------------------------------------------------------------------------------- /plugins/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/meson.build -------------------------------------------------------------------------------- /plugins/plugin_cfg80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_cfg80211.c -------------------------------------------------------------------------------- /plugins/plugin_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_function.c -------------------------------------------------------------------------------- /plugins/plugin_futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_futex.c -------------------------------------------------------------------------------- /plugins/plugin_hrtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_hrtimer.c -------------------------------------------------------------------------------- /plugins/plugin_jbd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_jbd2.c -------------------------------------------------------------------------------- /plugins/plugin_kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_kmem.c -------------------------------------------------------------------------------- /plugins/plugin_kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_kvm.c -------------------------------------------------------------------------------- /plugins/plugin_mac80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_mac80211.c -------------------------------------------------------------------------------- /plugins/plugin_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_net.c -------------------------------------------------------------------------------- /plugins/plugin_sched_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_sched_switch.c -------------------------------------------------------------------------------- /plugins/plugin_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_scsi.c -------------------------------------------------------------------------------- /plugins/plugin_tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_tlb.c -------------------------------------------------------------------------------- /plugins/plugin_xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/plugins/plugin_xen.c -------------------------------------------------------------------------------- /samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/samples/Makefile -------------------------------------------------------------------------------- /samples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/samples/meson.build -------------------------------------------------------------------------------- /samples/test-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/samples/test-event.c -------------------------------------------------------------------------------- /scripts/features.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/scripts/features.mk -------------------------------------------------------------------------------- /scripts/utilities.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/scripts/utilities.mak -------------------------------------------------------------------------------- /scripts/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/scripts/utils.mk -------------------------------------------------------------------------------- /src/Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/Build -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/event-parse-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/event-parse-api.c -------------------------------------------------------------------------------- /src/event-parse-local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/event-parse-local.h -------------------------------------------------------------------------------- /src/event-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/event-parse.c -------------------------------------------------------------------------------- /src/event-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/event-plugin.c -------------------------------------------------------------------------------- /src/kbuffer-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/kbuffer-parse.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/parse-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/parse-filter.c -------------------------------------------------------------------------------- /src/parse-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/parse-utils.c -------------------------------------------------------------------------------- /src/tep_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/tep_strerror.c -------------------------------------------------------------------------------- /src/trace-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/src/trace-seq.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main () 4 | { 5 | tep_load_plugins(NULL); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /utest/.gitignore: -------------------------------------------------------------------------------- 1 | trace-utest 2 | -------------------------------------------------------------------------------- /utest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/Makefile -------------------------------------------------------------------------------- /utest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/README -------------------------------------------------------------------------------- /utest/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/meson.build -------------------------------------------------------------------------------- /utest/trace-utest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/trace-utest.c -------------------------------------------------------------------------------- /utest/trace-utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/trace-utest.h -------------------------------------------------------------------------------- /utest/traceevent-utest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rostedt/libtraceevent/HEAD/utest/traceevent-utest.c --------------------------------------------------------------------------------