├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitignore ├── .gitreview ├── .pre-commit-config.yaml ├── .reuse └── dep5 ├── CONTRIBUTING.adoc ├── ChangeLog ├── CodingStyle.md ├── LICENSE ├── LICENSES ├── Autoconf-exception-2.0.txt ├── BSD-2-Clause.txt ├── BSD-4-Clause.txt ├── BSL-1.0.txt ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt ├── FSFAP.txt ├── FSFULLR.txt ├── GPL-2.0-only.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.1-only.txt ├── LicenseRef-Autoconf-exception-macro.txt ├── MIT.txt └── PSF-2.0.txt ├── Makefile.am ├── README.adoc ├── bootstrap ├── configure.ac ├── dev-requirements.txt ├── doc ├── Makefile.am ├── api │ └── libbabeltrace2 │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── Makefile.am │ │ ├── README.adoc │ │ ├── dox │ │ ├── api-fund.dox │ │ ├── examples.dox │ │ ├── group-trace-ir.dox │ │ ├── guides.dox │ │ └── main-page.dox │ │ ├── examples │ │ ├── distill.c │ │ ├── dust │ │ ├── dust.c │ │ ├── epitome.c │ │ └── vestige-plugin.c │ │ ├── images │ │ ├── all-field-classes.png │ │ ├── all-fields.png │ │ ├── basic-convert-graph.png │ │ ├── clock-terminology.png │ │ ├── clocks.png │ │ ├── complex-graph.png │ │ ├── component-zoom.png │ │ ├── component.png │ │ ├── darray-link.png │ │ ├── dblob-link.png │ │ ├── error-reporting-step-5.png │ │ ├── error-reporting-step-6.png │ │ ├── error-reporting-step-7.png │ │ ├── error-reporting-steps-1234.png │ │ ├── error-reporting-steps-89.png │ │ ├── error-reporting.png │ │ ├── fc-array.png │ │ ├── fc-ba.png │ │ ├── fc-blob.png │ │ ├── fc-bool.png │ │ ├── fc-enum.png │ │ ├── fc-int.png │ │ ├── fc-opt.png │ │ ├── fc-real.png │ │ ├── fc-string.png │ │ ├── fc-struct.png │ │ ├── fc-to-field.png │ │ ├── fc-var.png │ │ ├── field-class-zoom.png │ │ ├── graph-lifetime.png │ │ ├── linking.png │ │ ├── msg-iter-cls.png │ │ ├── msg-iter-complex.png │ │ ├── msg-iter.png │ │ ├── opt-link.png │ │ ├── plugin-comp-cls-full.png │ │ ├── plugin.png │ │ ├── trace-structure-msg-seq.png │ │ ├── trace-structure.png │ │ └── var-link.png │ │ └── style.css ├── bindings │ └── python │ │ ├── Makefile.am │ │ ├── ext │ │ └── bt2sphinxurl.py │ │ └── source │ │ ├── common.rst │ │ ├── conf.py │ │ ├── examples.rst │ │ ├── images │ │ └── basic-convert-graph.png │ │ ├── index.rst │ │ └── installation.rst ├── impl-details-images │ ├── bt-ref01.png │ ├── bt-ref02.png │ ├── bt-ref03.png │ ├── bt-ref04.png │ ├── bt-ref05.png │ ├── bt-ref06.png │ ├── bt-ref07.png │ ├── bt-ref08.png │ ├── bt-ref09.png │ ├── bt-ref10.png │ ├── bt-ref11.png │ ├── bt-ref12.png │ └── bt-ref13.png ├── impl-details.adoc ├── internal │ ├── Doxyfile.in │ ├── Makefile.am │ ├── all.dox │ ├── cpp.dox │ └── style.css └── man │ ├── Makefile.am │ ├── README.adoc │ ├── asciidoc-attrs.conf.in │ ├── babeltrace2-convert.1.txt │ ├── babeltrace2-filter.lttng-utils.debug-info.7.txt │ ├── babeltrace2-filter.utils.muxer.7.txt │ ├── babeltrace2-filter.utils.trimmer.7.txt │ ├── babeltrace2-help.1.txt │ ├── babeltrace2-intro.7.txt │ ├── babeltrace2-list-plugins.1.txt │ ├── babeltrace2-plugin-ctf.7.txt │ ├── babeltrace2-plugin-lttng-utils.7.txt │ ├── babeltrace2-plugin-text.7.txt │ ├── babeltrace2-plugin-utils.7.txt │ ├── babeltrace2-query-babeltrace.support-info.7.txt │ ├── babeltrace2-query-babeltrace.trace-infos.7.txt │ ├── babeltrace2-query.1.txt │ ├── babeltrace2-run.1.txt │ ├── babeltrace2-sink.ctf.fs.7.txt │ ├── babeltrace2-sink.text.details.7.txt │ ├── babeltrace2-sink.text.pretty.7.txt │ ├── babeltrace2-sink.utils.counter.7.txt │ ├── babeltrace2-sink.utils.dummy.7.txt │ ├── babeltrace2-source.ctf.fs.7.txt │ ├── babeltrace2-source.ctf.lttng-live.7.txt │ ├── babeltrace2-source.text.dmesg.7.txt │ ├── babeltrace2.1.txt │ ├── bt-asciidoc.conf │ ├── common-cli-env.txt │ ├── common-cli-files.txt │ ├── common-cmd-footer.txt │ ├── common-cmd-info-options.txt │ ├── common-cmd-params-format.txt │ ├── common-common-env.txt │ ├── common-convert-examples.txt │ ├── common-footer.txt │ ├── common-gen-options.txt │ ├── common-lib-env.txt │ ├── common-log-levels.txt │ ├── common-see-babeltrace2-intro.txt │ ├── common-trimmer-time-format.txt │ └── manpage.xsl ├── include ├── Makefile.am ├── babeltrace2-ctf-writer │ ├── clock-class.h │ ├── clock.h │ ├── event-fields.h │ ├── event-types.h │ ├── event.h │ ├── field-types.h │ ├── fields.h │ ├── object.h │ ├── stream-class.h │ ├── stream.h │ ├── trace.h │ ├── types.h │ ├── utils.h │ ├── visitor.h │ └── writer.h └── babeltrace2 │ ├── babeltrace.h │ ├── error-reporting.h │ ├── func-status.h │ ├── graph │ ├── component-class-dev.h │ ├── component-class.h │ ├── component-descriptor-set.h │ ├── component.h │ ├── connection.h │ ├── graph.h │ ├── interrupter.h │ ├── message-iterator-class.h │ ├── message-iterator.h │ ├── message.h │ ├── port.h │ ├── private-query-executor.h │ ├── query-executor.h │ ├── self-component-class.h │ ├── self-component-port.h │ ├── self-component.h │ └── self-message-iterator.h │ ├── integer-range-set.h │ ├── logging-defs.h │ ├── logging.h │ ├── plugin │ ├── plugin-dev.h │ └── plugin-loading.h │ ├── trace-ir │ ├── clock-class.h │ ├── clock-snapshot.h │ ├── event-class.h │ ├── event.h │ ├── field-class.h │ ├── field-location.h │ ├── field-path.h │ ├── field.h │ ├── packet.h │ ├── stream-class.h │ ├── stream.h │ ├── trace-class.h │ └── trace.h │ ├── types.h │ ├── util.h │ ├── value.h │ └── version.h ├── m4 ├── ac_extensions.m4 ├── ae_check_sphinx.m4 ├── ae_config_feature.m4 ├── ae_in_git_repo.m4 ├── ae_lib_elfutils.m4 ├── ae_pprint.m4 ├── ae_python_modules.m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_append_link_flags.m4 ├── ax_c___attribute__.m4 ├── ax_check_compile_flag.m4 ├── ax_check_link_flag.m4 ├── ax_compare_version.m4 ├── ax_cxx_compile_stdcxx.m4 ├── ax_lib_socket_nsl.m4 ├── ax_pkg_swig.m4 ├── ax_prog_bison_version.m4 ├── ax_prog_doxygen.m4 ├── ax_prog_flex_version.m4 ├── ax_pthread.m4 └── ax_require_defined.m4 ├── pyproject.toml ├── setup.cfg ├── src ├── Makefile.am ├── Makefile.common.inc ├── argpar │ ├── argpar.c │ ├── argpar.h │ └── argpar.hpp ├── autodisc │ ├── autodisc.c │ └── autodisc.h ├── babeltrace2-ctf-writer.pc.in ├── babeltrace2.pc.in ├── bindings │ └── python │ │ └── bt2 │ │ ├── Makefile.am │ │ ├── bt2 │ │ ├── __init__.py │ │ ├── clock_class.py │ │ ├── clock_snapshot.py │ │ ├── component.py │ │ ├── component_descriptor.py │ │ ├── connection.py │ │ ├── error.py │ │ ├── event.py │ │ ├── event_class.py │ │ ├── field.py │ │ ├── field_class.py │ │ ├── field_location.py │ │ ├── field_path.py │ │ ├── graph.py │ │ ├── integer_range_set.py │ │ ├── interrupter.py │ │ ├── local_typing.py │ │ ├── local_typing.py.license │ │ ├── logging.cpp │ │ ├── logging.hpp │ │ ├── logging.py │ │ ├── message.py │ │ ├── message_iterator.py │ │ ├── mip.py │ │ ├── native_bt.i │ │ ├── native_bt_autodisc.i │ │ ├── native_bt_autodisc.i.hpp │ │ ├── native_bt_bt2_objects.hpp │ │ ├── native_bt_clock_class.i │ │ ├── native_bt_clock_snapshot.i │ │ ├── native_bt_component.i │ │ ├── native_bt_component_class.i │ │ ├── native_bt_component_class.i.hpp │ │ ├── native_bt_connection.i │ │ ├── native_bt_error.i │ │ ├── native_bt_error.i.hpp │ │ ├── native_bt_event.i │ │ ├── native_bt_event_class.i │ │ ├── native_bt_field.i │ │ ├── native_bt_field_class.i │ │ ├── native_bt_field_location.i │ │ ├── native_bt_field_path.i │ │ ├── native_bt_graph.i │ │ ├── native_bt_graph.i.hpp │ │ ├── native_bt_integer_range_set.i │ │ ├── native_bt_interrupter.i │ │ ├── native_bt_log_and_append_error.hpp │ │ ├── native_bt_logging.i │ │ ├── native_bt_message.i │ │ ├── native_bt_message_iterator.i │ │ ├── native_bt_message_iterator.i.hpp │ │ ├── native_bt_mip.i │ │ ├── native_bt_mip.i.hpp │ │ ├── native_bt_packet.i │ │ ├── native_bt_plugin.i │ │ ├── native_bt_plugin.i.hpp │ │ ├── native_bt_port.i │ │ ├── native_bt_query_exec.i │ │ ├── native_bt_query_exec.i.hpp │ │ ├── native_bt_stream.i │ │ ├── native_bt_stream_class.i │ │ ├── native_bt_trace.i │ │ ├── native_bt_trace.i.hpp │ │ ├── native_bt_trace_class.i │ │ ├── native_bt_trace_class.i.hpp │ │ ├── native_bt_value.i │ │ ├── native_bt_value.i.hpp │ │ ├── native_bt_version.i │ │ ├── object.py │ │ ├── packet.py │ │ ├── plugin.py │ │ ├── port.py │ │ ├── py_plugin.py │ │ ├── query_executor.py │ │ ├── stream.py │ │ ├── stream_class.py │ │ ├── trace.py │ │ ├── trace_class.py │ │ ├── trace_collection_message_iterator.py │ │ ├── typing_mod.py │ │ ├── user_attributes.py │ │ ├── utils.py │ │ ├── value.py │ │ └── version.py.in │ │ └── setup.py.in ├── cli │ ├── Makefile.am │ ├── babeltrace2-cfg-cli-args-connect.c │ ├── babeltrace2-cfg-cli-args-connect.h │ ├── babeltrace2-cfg-cli-args-default.c │ ├── babeltrace2-cfg-cli-args-default.h │ ├── babeltrace2-cfg-cli-args.c │ ├── babeltrace2-cfg-cli-args.h │ ├── babeltrace2-cfg.c │ ├── babeltrace2-cfg.h │ ├── babeltrace2-log-level.c │ ├── babeltrace2-log-level.h │ ├── babeltrace2-plugins.c │ ├── babeltrace2-plugins.h │ ├── babeltrace2-query.c │ ├── babeltrace2-query.h │ ├── babeltrace2.c │ ├── logging.cpp │ └── logging.h ├── clock-correlation-validator │ ├── clock-correlation-validator.cpp │ ├── clock-correlation-validator.h │ └── clock-correlation-validator.hpp ├── common │ ├── align.h │ ├── assert.c │ ├── assert.h │ ├── common.c │ ├── common.h │ ├── list.h │ ├── macros.h │ ├── mmap-align.h │ ├── safe.h │ ├── uuid.c │ ├── uuid.h │ └── version.h ├── compat │ ├── bitfield.h │ ├── compiler.h │ ├── endian.h │ ├── fcntl.h │ ├── glib.h │ ├── limits.h │ ├── memstream.h │ ├── mman.c │ ├── mman.h │ ├── socket.hpp │ ├── stdio.h │ ├── stdlib.h │ ├── time.h │ ├── unistd.h │ └── utc.h ├── cpp-common │ ├── bt2 │ │ ├── borrowed-object-iterator.hpp │ │ ├── borrowed-object-proxy.hpp │ │ ├── borrowed-object.hpp │ │ ├── clock-class.hpp │ │ ├── clock-snapshot.hpp │ │ ├── component-class-dev.hpp │ │ ├── component-class.hpp │ │ ├── component-port.hpp │ │ ├── error.hpp │ │ ├── exc.hpp │ │ ├── field-class.hpp │ │ ├── field-location.hpp │ │ ├── field-path.hpp │ │ ├── field.hpp │ │ ├── graph.hpp │ │ ├── identity-view.hpp │ │ ├── integer-range-set.hpp │ │ ├── integer-range.hpp │ │ ├── internal │ │ │ ├── comp-cls-bridge.hpp │ │ │ └── utils.hpp │ │ ├── logging.hpp │ │ ├── message-array.hpp │ │ ├── message-iterator.hpp │ │ ├── message.hpp │ │ ├── optional-borrowed-object.hpp │ │ ├── plugin-dev.hpp │ │ ├── plugin-load.hpp │ │ ├── plugin-set.hpp │ │ ├── plugin.hpp │ │ ├── private-query-executor.hpp │ │ ├── query-executor.hpp │ │ ├── raw-value-proxy.hpp │ │ ├── self-component-class.hpp │ │ ├── self-component-port.hpp │ │ ├── self-message-iterator-configuration.hpp │ │ ├── self-message-iterator.hpp │ │ ├── shared-object.hpp │ │ ├── trace-ir.hpp │ │ ├── type-traits.hpp │ │ ├── value.hpp │ │ └── wrap.hpp │ ├── bt2c │ │ ├── aliases.hpp │ │ ├── align.hpp │ │ ├── bt2-value-from-json-val.cpp │ │ ├── bt2-value-from-json-val.hpp │ │ ├── c-string-view.hpp │ │ ├── call.hpp │ │ ├── contains.hpp │ │ ├── data-len.hpp │ │ ├── endian.hpp │ │ ├── exc.hpp │ │ ├── file-utils.cpp │ │ ├── file-utils.hpp │ │ ├── fmt.hpp │ │ ├── glib-up.hpp │ │ ├── join.hpp │ │ ├── json-val-req.cpp │ │ ├── json-val-req.hpp │ │ ├── json-val.cpp │ │ ├── json-val.hpp │ │ ├── libc-up.hpp │ │ ├── logging.hpp │ │ ├── make-span.hpp │ │ ├── observable.hpp │ │ ├── parse-json-as-val.cpp │ │ ├── parse-json-as-val.hpp │ │ ├── parse-json.hpp │ │ ├── prio-heap.hpp │ │ ├── read-fixed-len-int.hpp │ │ ├── regex.hpp │ │ ├── reverse-fixed-len-int-bits.hpp │ │ ├── safe-ops.hpp │ │ ├── std-int.hpp │ │ ├── str-scanner.cpp │ │ ├── str-scanner.hpp │ │ ├── text-loc-str.cpp │ │ ├── text-loc-str.hpp │ │ ├── text-loc.cpp │ │ ├── text-loc.hpp │ │ ├── type-traits.hpp │ │ ├── unicode-conv.cpp │ │ ├── unicode-conv.hpp │ │ ├── uuid.hpp │ │ ├── val-req.hpp │ │ └── vector.hpp │ ├── bt2s │ │ ├── make-unique.hpp │ │ ├── optional.hpp │ │ ├── span.hpp │ │ └── string-view.hpp │ └── vendor │ │ ├── fmt │ │ ├── args.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── os.cc │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ │ ├── nlohmann │ │ └── json.hpp │ │ ├── optional-lite │ │ ├── optional.hpp │ │ └── optional.hpp.license │ │ ├── span-lite │ │ ├── span.hpp │ │ └── span.hpp.license │ │ ├── string-view-lite │ │ ├── string_view.hpp │ │ └── string_view.hpp.license │ │ └── wise-enum │ │ ├── optional.h │ │ ├── optional_common.h │ │ ├── wise_enum.h │ │ ├── wise_enum_detail.h │ │ └── wise_enum_generated.h ├── ctf-writer │ ├── assert-pre.h │ ├── attributes.c │ ├── attributes.h │ ├── clock-class.c │ ├── clock-class.h │ ├── clock.c │ ├── clock.h │ ├── event-class.c │ ├── event-class.h │ ├── event.c │ ├── event.h │ ├── field-path.c │ ├── field-path.h │ ├── field-types.c │ ├── field-types.h │ ├── field-wrapper.c │ ├── field-wrapper.h │ ├── fields.c │ ├── fields.h │ ├── functor.c │ ├── functor.h │ ├── logging.c │ ├── logging.h │ ├── object-pool.c │ ├── object-pool.h │ ├── object.c │ ├── object.h │ ├── resolve.c │ ├── resolve.h │ ├── stream-class.c │ ├── stream-class.h │ ├── stream.c │ ├── stream.h │ ├── trace.c │ ├── trace.h │ ├── utils.c │ ├── utils.h │ ├── validation.c │ ├── validation.h │ ├── values.c │ ├── values.h │ ├── visitor.c │ ├── visitor.h │ ├── writer.c │ └── writer.h ├── ctfser │ ├── ctfser.c │ └── ctfser.h ├── fd-cache │ ├── fd-cache.cpp │ └── fd-cache.hpp ├── gen-version-i.sh ├── lib │ ├── assert-cond-base.h │ ├── assert-cond.c │ ├── assert-cond.h │ ├── babeltrace2.c │ ├── current-thread.c │ ├── error.c │ ├── error.h │ ├── func-status.h │ ├── graph │ │ ├── component-class-sink-simple.c │ │ ├── component-class-sink-simple.h │ │ ├── component-class.c │ │ ├── component-class.h │ │ ├── component-descriptor-set.c │ │ ├── component-descriptor-set.h │ │ ├── component-filter.c │ │ ├── component-filter.h │ │ ├── component-sink.c │ │ ├── component-sink.h │ │ ├── component-source.c │ │ ├── component-source.h │ │ ├── component.c │ │ ├── component.h │ │ ├── connection.c │ │ ├── connection.h │ │ ├── graph.c │ │ ├── graph.h │ │ ├── interrupter.c │ │ ├── interrupter.h │ │ ├── iterator.c │ │ ├── iterator.h │ │ ├── message-iterator-class.c │ │ ├── message-iterator-class.h │ │ ├── message │ │ │ ├── discarded-items.c │ │ │ ├── discarded-items.h │ │ │ ├── event.c │ │ │ ├── event.h │ │ │ ├── message-iterator-inactivity.c │ │ │ ├── message-iterator-inactivity.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── packet.c │ │ │ ├── packet.h │ │ │ ├── stream.c │ │ │ └── stream.h │ │ ├── mip.c │ │ ├── port.c │ │ ├── port.h │ │ ├── query-executor.c │ │ └── query-executor.h │ ├── integer-range-set.c │ ├── integer-range-set.h │ ├── lib-logging.c │ ├── logging.c │ ├── logging.h │ ├── object-pool.c │ ├── object-pool.h │ ├── object.h │ ├── plugin │ │ ├── plugin-so.c │ │ ├── plugin-so.h │ │ ├── plugin.c │ │ └── plugin.h │ ├── property.h │ ├── trace-ir │ │ ├── attributes.c │ │ ├── attributes.h │ │ ├── clock-class.c │ │ ├── clock-class.h │ │ ├── clock-snapshot.c │ │ ├── clock-snapshot.h │ │ ├── event-class.c │ │ ├── event-class.h │ │ ├── event.c │ │ ├── event.h │ │ ├── field-class.c │ │ ├── field-class.h │ │ ├── field-location.c │ │ ├── field-location.h │ │ ├── field-path.c │ │ ├── field-path.h │ │ ├── field-wrapper.c │ │ ├── field-wrapper.h │ │ ├── field.c │ │ ├── field.h │ │ ├── packet.c │ │ ├── packet.h │ │ ├── resolve-field-path.c │ │ ├── resolve-field-path.h │ │ ├── resolve-field-xref.h │ │ ├── stream-class.c │ │ ├── stream-class.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── trace-class.c │ │ ├── trace-class.h │ │ ├── trace.c │ │ ├── trace.h │ │ ├── utils.c │ │ └── utils.h │ ├── util.c │ ├── value.c │ └── value.h ├── logging │ ├── comp-logging.h │ ├── log-api.c │ ├── log-api.h │ └── log.h ├── param-parse │ ├── param-parse.c │ └── param-parse.h ├── plugins │ ├── common │ │ ├── muxing │ │ │ ├── muxing.cpp │ │ │ └── muxing.hpp │ │ └── param-validation │ │ │ ├── param-validation.c │ │ │ └── param-validation.h │ ├── ctf │ │ ├── common │ │ │ ├── metadata │ │ │ │ ├── ctf-ir.cpp │ │ │ │ ├── ctf-ir.hpp │ │ │ │ ├── int-range-set.hpp │ │ │ │ ├── int-range.hpp │ │ │ │ ├── json-strings.cpp │ │ │ │ └── json-strings.hpp │ │ │ └── src │ │ │ │ ├── clk-cls-cfg.hpp │ │ │ │ ├── item-seq │ │ │ │ ├── item-seq-iter.cpp │ │ │ │ ├── item-seq-iter.hpp │ │ │ │ ├── item-visitor.cpp │ │ │ │ ├── item-visitor.hpp │ │ │ │ ├── item.cpp │ │ │ │ ├── item.hpp │ │ │ │ ├── logging-item-visitor.cpp │ │ │ │ ├── logging-item-visitor.hpp │ │ │ │ ├── medium.cpp │ │ │ │ └── medium.hpp │ │ │ │ ├── metadata │ │ │ │ ├── ctf-ir.cpp │ │ │ │ ├── ctf-ir.hpp │ │ │ │ ├── json │ │ │ │ │ ├── ctf-2-fc-builder.cpp │ │ │ │ │ ├── ctf-2-fc-builder.hpp │ │ │ │ │ ├── ctf-2-metadata-stream-parser.cpp │ │ │ │ │ ├── ctf-2-metadata-stream-parser.hpp │ │ │ │ │ ├── fcs-with-role.cpp │ │ │ │ │ ├── fcs-with-role.hpp │ │ │ │ │ ├── key-fc-types.cpp │ │ │ │ │ ├── key-fc-types.hpp │ │ │ │ │ ├── normalize-field-locs.cpp │ │ │ │ │ ├── normalize-field-locs.hpp │ │ │ │ │ ├── resolve-fcs-with-int-sel.cpp │ │ │ │ │ ├── resolve-fcs-with-int-sel.hpp │ │ │ │ │ ├── utils.cpp │ │ │ │ │ ├── utils.hpp │ │ │ │ │ ├── val-req.cpp │ │ │ │ │ ├── val-req.hpp │ │ │ │ │ ├── validate-scope-fc-roles.cpp │ │ │ │ │ └── validate-scope-fc-roles.hpp │ │ │ │ ├── metadata-stream-parser-utils.cpp │ │ │ │ ├── metadata-stream-parser-utils.hpp │ │ │ │ ├── metadata-stream-parser.cpp │ │ │ │ ├── metadata-stream-parser.hpp │ │ │ │ ├── normalize-clk-offset.cpp │ │ │ │ ├── normalize-clk-offset.hpp │ │ │ │ └── tsdl │ │ │ │ │ ├── ast.hpp │ │ │ │ │ ├── ctf-1-metadata-stream-parser.cpp │ │ │ │ │ ├── ctf-1-metadata-stream-parser.hpp │ │ │ │ │ ├── ctf-meta-configure-ir-trace.cpp │ │ │ │ │ ├── ctf-meta-configure-ir-trace.hpp │ │ │ │ │ ├── ctf-meta-resolve.cpp │ │ │ │ │ ├── ctf-meta-update-alignments.cpp │ │ │ │ │ ├── ctf-meta-update-default-clock-classes.cpp │ │ │ │ │ ├── ctf-meta-update-meanings.cpp │ │ │ │ │ ├── ctf-meta-update-text-array-sequence.cpp │ │ │ │ │ ├── ctf-meta-validate.cpp │ │ │ │ │ ├── ctf-meta-visitors.hpp │ │ │ │ │ ├── ctf-meta-warn-meaningless-header-fields.cpp │ │ │ │ │ ├── ctf-meta.hpp │ │ │ │ │ ├── lexer.lpp │ │ │ │ │ ├── logging.hpp │ │ │ │ │ ├── metadata-stream-decoder.cpp │ │ │ │ │ ├── metadata-stream-decoder.hpp │ │ │ │ │ ├── objstack.cpp │ │ │ │ │ ├── objstack.hpp │ │ │ │ │ ├── parser-wrap.hpp │ │ │ │ │ ├── parser.ypp │ │ │ │ │ ├── scanner-symbols.hpp │ │ │ │ │ ├── scanner.hpp │ │ │ │ │ ├── visitor-generate-ir.cpp │ │ │ │ │ ├── visitor-parent-links.cpp │ │ │ │ │ └── visitor-semantic-validator.cpp │ │ │ │ ├── msg-iter.cpp │ │ │ │ ├── msg-iter.hpp │ │ │ │ ├── null-cp-finder.hpp │ │ │ │ ├── pkt-props.cpp │ │ │ │ └── pkt-props.hpp │ │ ├── fs-sink │ │ │ ├── fs-sink-ctf-meta.hpp │ │ │ ├── fs-sink-stream.cpp │ │ │ ├── fs-sink-stream.hpp │ │ │ ├── fs-sink-trace.cpp │ │ │ ├── fs-sink-trace.hpp │ │ │ ├── fs-sink.cpp │ │ │ ├── fs-sink.hpp │ │ │ ├── translate-ctf-ir-to-json.cpp │ │ │ ├── translate-ctf-ir-to-json.hpp │ │ │ ├── translate-ctf-ir-to-tsdl.cpp │ │ │ ├── translate-ctf-ir-to-tsdl.hpp │ │ │ ├── translate-trace-ir-to-ctf-ir.cpp │ │ │ └── translate-trace-ir-to-ctf-ir.hpp │ │ ├── fs-src │ │ │ ├── data-stream-file.cpp │ │ │ ├── data-stream-file.hpp │ │ │ ├── file.cpp │ │ │ ├── file.hpp │ │ │ ├── fs.cpp │ │ │ ├── fs.hpp │ │ │ ├── lttng-index.hpp │ │ │ ├── metadata.hpp │ │ │ ├── query.cpp │ │ │ └── query.hpp │ │ ├── lttng-live │ │ │ ├── data-stream.cpp │ │ │ ├── data-stream.hpp │ │ │ ├── lttng-live.cpp │ │ │ ├── lttng-live.hpp │ │ │ ├── lttng-viewer-abi.hpp │ │ │ ├── metadata.cpp │ │ │ ├── metadata.hpp │ │ │ ├── viewer-connection.cpp │ │ │ └── viewer-connection.hpp │ │ └── plugin.cpp │ ├── lttng-utils │ │ ├── debug-info │ │ │ ├── bin-info.cpp │ │ │ ├── bin-info.hpp │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── debug-info.cpp │ │ │ ├── debug-info.hpp │ │ │ ├── dwarf.cpp │ │ │ ├── dwarf.hpp │ │ │ ├── trace-ir-data-copy.cpp │ │ │ ├── trace-ir-data-copy.hpp │ │ │ ├── trace-ir-mapping.cpp │ │ │ ├── trace-ir-mapping.hpp │ │ │ ├── trace-ir-metadata-copy.cpp │ │ │ ├── trace-ir-metadata-copy.hpp │ │ │ ├── trace-ir-metadata-field-class-copy.cpp │ │ │ ├── trace-ir-metadata-field-class-copy.hpp │ │ │ ├── utils.cpp │ │ │ └── utils.hpp │ │ └── plugin.cpp │ ├── text │ │ ├── details │ │ │ ├── colors.h │ │ │ ├── details.c │ │ │ ├── details.h │ │ │ ├── obj-lifetime-mgmt.c │ │ │ ├── obj-lifetime-mgmt.h │ │ │ ├── write.c │ │ │ └── write.h │ │ ├── dmesg │ │ │ ├── dmesg.c │ │ │ └── dmesg.h │ │ ├── plugin.c │ │ └── pretty │ │ │ ├── pretty.c │ │ │ ├── pretty.h │ │ │ └── print.c │ └── utils │ │ ├── counter │ │ ├── counter.c │ │ └── counter.h │ │ ├── dummy │ │ ├── dummy.c │ │ └── dummy.h │ │ ├── muxer │ │ ├── comp.cpp │ │ ├── comp.hpp │ │ ├── msg-iter.cpp │ │ ├── msg-iter.hpp │ │ ├── upstream-msg-iter.cpp │ │ └── upstream-msg-iter.hpp │ │ ├── plugin.cpp │ │ └── trimmer │ │ ├── trimmer.c │ │ └── trimmer.h ├── py-common │ ├── py-common.cpp │ ├── py-common.h │ └── py-common.hpp ├── python-plugin-provider │ ├── python-plugin-provider.c │ └── python-plugin-provider.h └── string-format │ ├── format-error.c │ ├── format-error.h │ ├── format-plugin-comp-cls-name.c │ └── format-plugin-comp-cls-name.h ├── std-ext-lib.md ├── tests ├── Makefile.am ├── bindings │ └── python │ │ └── bt2 │ │ ├── .coveragerc │ │ ├── test-python-bt2.sh │ │ ├── test_clock_class.py │ │ ├── test_component.py │ │ ├── test_component_class.py │ │ ├── test_component_descriptor.py │ │ ├── test_connection.py │ │ ├── test_error.py │ │ ├── test_event.py │ │ ├── test_event_class.py │ │ ├── test_field.py │ │ ├── test_field_class.py │ │ ├── test_graph.py │ │ ├── test_integer_range_set.py │ │ ├── test_interrupter.py │ │ ├── test_message.py │ │ ├── test_message_iterator.py │ │ ├── test_mip.py │ │ ├── test_mip1.py │ │ ├── test_package.py │ │ ├── test_packet.py │ │ ├── test_plugin.py │ │ ├── test_port.py │ │ ├── test_query_executor.py │ │ ├── test_stream.py │ │ ├── test_stream_class.py │ │ ├── test_trace.py │ │ ├── test_trace_class.py │ │ ├── test_trace_collection_message_iterator.py │ │ ├── test_value.py │ │ └── utils.py ├── bitfield │ ├── Makefile.am │ └── test-bitfield.c ├── cli │ ├── convert │ │ ├── test-auto-source-discovery-grouping.sh │ │ ├── test-auto-source-discovery-log-level.sh │ │ ├── test-auto-source-discovery-params.sh │ │ └── test-convert-args.sh │ ├── list-plugins │ │ └── test-list-plugins.sh │ ├── params │ │ └── test-params.sh │ ├── query │ │ └── test-query.sh │ ├── test-exit-status.sh │ ├── test-help.sh │ ├── test-intersection.sh │ ├── test-output-ctf-metadata.sh │ ├── test-output-path-ctf-non-lttng-trace.sh │ ├── test-packet-seq-num.sh │ ├── test-trace-copy.sh │ ├── test-trace-read.sh │ └── test-trimmer.sh ├── cpp-common │ ├── test-c-string-view.cpp │ ├── test-unicode-conv.cpp │ └── test-uuid.cpp ├── ctf-writer │ ├── Makefile.am │ ├── ctf-writer.c │ └── test-ctf-writer.sh ├── data │ ├── auto-source-discovery │ │ ├── grouping │ │ │ ├── bt_plugin_test.py │ │ │ └── traces │ │ │ │ ├── aaa1 │ │ │ │ ├── aaa2 │ │ │ │ ├── aaa3 │ │ │ │ ├── bbb1 │ │ │ │ ├── bbb2 │ │ │ │ ├── ccc1 │ │ │ │ ├── ccc2 │ │ │ │ ├── ccc3 │ │ │ │ ├── ccc4 │ │ │ │ └── some-dir │ │ │ │ └── aaa10 │ │ └── params-log-level │ │ │ ├── bt_plugin_test.py │ │ │ ├── dir-a │ │ │ └── aaa │ │ │ ├── dir-ab │ │ │ ├── aaa │ │ │ └── bbb │ │ │ └── dir-b │ │ │ └── bbb │ ├── cli │ │ ├── convert │ │ │ └── auto-source-discovery-grouping.expect │ │ ├── exit-status │ │ │ └── bt_plugin_test_cli_exit_status.py │ │ ├── list-plugins │ │ │ └── bt_plugin_list_plugins.py │ │ ├── params │ │ │ └── bt_plugin_params.py │ │ ├── query │ │ │ └── bt_plugin_query.py │ │ └── test-output-ctf-metadata.ref │ ├── ctf-traces │ │ ├── 1 │ │ │ ├── deterministic-ordering │ │ │ │ ├── a-corrupted │ │ │ │ │ ├── dummystream │ │ │ │ │ └── metadata │ │ │ │ ├── b-c.expect │ │ │ │ ├── b-not-corrupted │ │ │ │ │ ├── dummystream │ │ │ │ │ └── metadata │ │ │ │ └── c-corrupted │ │ │ │ │ ├── dummystream │ │ │ │ │ └── metadata │ │ │ ├── fail │ │ │ │ ├── fail1 │ │ │ │ │ ├── dummystream │ │ │ │ │ └── metadata │ │ │ │ ├── fail2 │ │ │ │ │ └── metadata │ │ │ │ ├── incomplete-packet-header │ │ │ │ │ ├── metadata │ │ │ │ │ └── stream │ │ │ │ ├── integer-range │ │ │ │ │ └── metadata │ │ │ │ ├── invalid-packet-size │ │ │ │ │ ├── README │ │ │ │ │ └── trace │ │ │ │ │ │ ├── channel0_3 │ │ │ │ │ │ ├── index │ │ │ │ │ │ └── channel0_3.idx │ │ │ │ │ │ └── metadata │ │ │ │ ├── invalid-sequence-length-field-class │ │ │ │ │ └── metadata │ │ │ │ ├── invalid-variant-selector-field-class │ │ │ │ │ └── metadata │ │ │ │ ├── lttng-modules-2.0-pre1 │ │ │ │ │ └── metadata │ │ │ │ ├── metadata-syntax-error │ │ │ │ │ └── metadata │ │ │ │ ├── packet-based-metadata │ │ │ │ │ └── metadata │ │ │ │ ├── smalltrace │ │ │ │ │ ├── dummystream-fail │ │ │ │ │ └── metadata │ │ │ │ └── valid-events-then-invalid-events │ │ │ │ │ ├── README │ │ │ │ │ └── trace │ │ │ │ │ ├── dummystream │ │ │ │ │ └── metadata │ │ │ ├── intersection │ │ │ │ ├── 3eventsintersect │ │ │ │ │ ├── metadata │ │ │ │ │ ├── test_stream_0 │ │ │ │ │ └── test_stream_1 │ │ │ │ ├── 3eventsintersectreverse │ │ │ │ │ ├── metadata │ │ │ │ │ ├── test_stream_0 │ │ │ │ │ └── test_stream_1 │ │ │ │ ├── nointersect │ │ │ │ │ ├── metadata │ │ │ │ │ ├── test_stream_0 │ │ │ │ │ └── test_stream_1 │ │ │ │ ├── nostream │ │ │ │ │ └── metadata │ │ │ │ └── onestream │ │ │ │ │ ├── metadata │ │ │ │ │ └── test_stream_0 │ │ │ ├── live │ │ │ │ ├── invalid-metadata │ │ │ │ │ ├── channel0_0 │ │ │ │ │ ├── index │ │ │ │ │ │ └── channel0_0.idx │ │ │ │ │ └── metadata │ │ │ │ ├── new-streams │ │ │ │ │ ├── first-trace.mctf │ │ │ │ │ └── second-trace.mctf │ │ │ │ ├── split-metadata │ │ │ │ │ ├── channel0_0 │ │ │ │ │ ├── index │ │ │ │ │ │ └── channel0_0.idx │ │ │ │ │ └── metadata │ │ │ │ └── stored-values.mctf │ │ │ ├── packet-seq-num │ │ │ │ ├── 2-lost-before-last │ │ │ │ │ ├── metadata │ │ │ │ │ └── test_stream_0 │ │ │ │ ├── 2-streams-lost-in-1 │ │ │ │ │ ├── metadata │ │ │ │ │ ├── test_stream_0 │ │ │ │ │ └── test_stream_1 │ │ │ │ ├── 2-streams-lost-in-2 │ │ │ │ │ ├── metadata │ │ │ │ │ ├── test_stream_0 │ │ │ │ │ └── test_stream_1 │ │ │ │ ├── 7-lost-between-2-with-index │ │ │ │ │ ├── index │ │ │ │ │ │ └── stream_0.idx │ │ │ │ │ ├── metadata │ │ │ │ │ └── stream_0 │ │ │ │ ├── no-lost-not-starting-at-0 │ │ │ │ │ ├── metadata │ │ │ │ │ └── test_stream_0 │ │ │ │ └── no-lost │ │ │ │ │ ├── metadata │ │ │ │ │ └── test_stream_0 │ │ │ └── succeed │ │ │ │ ├── 2packets │ │ │ │ ├── channel0_2 │ │ │ │ ├── index │ │ │ │ │ └── channel0_2.idx │ │ │ │ └── metadata │ │ │ │ ├── array-align-elem │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── barectf-event-before-packet │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── crlf-metadata │ │ │ │ ├── channel0_0 │ │ │ │ └── metadata │ │ │ │ ├── debug-info │ │ │ │ ├── channel0_0 │ │ │ │ └── metadata │ │ │ │ ├── def-clk-freq │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── env-warning │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ ├── ev-disc-no-ts-begin-end │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── lf-metadata │ │ │ │ ├── channel0_0 │ │ │ │ └── metadata │ │ │ │ ├── lttng-crash │ │ │ │ ├── chan_0 │ │ │ │ └── metadata │ │ │ │ ├── lttng-event-after-packet │ │ │ │ ├── chan_0 │ │ │ │ └── metadata │ │ │ │ ├── lttng-tracefile-rotation │ │ │ │ ├── README │ │ │ │ └── kernel │ │ │ │ │ ├── index │ │ │ │ │ ├── mychan_0_0.idx │ │ │ │ │ ├── mychan_0_1.idx │ │ │ │ │ ├── mychan_0_2.idx │ │ │ │ │ ├── mychan_1_0.idx │ │ │ │ │ ├── mychan_1_1.idx │ │ │ │ │ ├── mychan_1_2.idx │ │ │ │ │ ├── mychan_2_0.idx │ │ │ │ │ ├── mychan_2_1.idx │ │ │ │ │ ├── mychan_2_2.idx │ │ │ │ │ ├── mychan_3_0.idx │ │ │ │ │ └── mychan_3_1.idx │ │ │ │ │ ├── metadata │ │ │ │ │ ├── mychan_0_0 │ │ │ │ │ ├── mychan_0_1 │ │ │ │ │ ├── mychan_0_2 │ │ │ │ │ ├── mychan_1_0 │ │ │ │ │ ├── mychan_1_1 │ │ │ │ │ ├── mychan_1_2 │ │ │ │ │ ├── mychan_2_0 │ │ │ │ │ ├── mychan_2_1 │ │ │ │ │ ├── mychan_2_2 │ │ │ │ │ ├── mychan_3_0 │ │ │ │ │ └── mychan_3_1 │ │ │ │ ├── meta-ctx-sequence │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── meta-trailing-byte │ │ │ │ ├── channel0_2 │ │ │ │ ├── index │ │ │ │ │ └── channel0_2.idx │ │ │ │ └── metadata │ │ │ │ ├── meta-variant-no-underscore │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── meta-variant-one-underscore │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── meta-variant-reserved-keywords │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── meta-variant-same-with-underscore │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── meta-variant-two-underscores │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── multi-domains │ │ │ │ ├── kernel │ │ │ │ │ ├── index │ │ │ │ │ │ ├── kernel_channel_0.idx │ │ │ │ │ │ ├── kernel_channel_1.idx │ │ │ │ │ │ ├── kernel_channel_2.idx │ │ │ │ │ │ └── kernel_channel_3.idx │ │ │ │ │ ├── kernel_channel_0 │ │ │ │ │ ├── kernel_channel_1 │ │ │ │ │ ├── kernel_channel_2 │ │ │ │ │ ├── kernel_channel_3 │ │ │ │ │ └── metadata │ │ │ │ └── ust │ │ │ │ │ ├── index │ │ │ │ │ ├── ust2_channel_0.idx │ │ │ │ │ ├── ust2_channel_1.idx │ │ │ │ │ ├── ust2_channel_2.idx │ │ │ │ │ └── ust2_channel_3.idx │ │ │ │ │ ├── metadata │ │ │ │ │ ├── ust2_channel_0 │ │ │ │ │ ├── ust2_channel_1 │ │ │ │ │ ├── ust2_channel_2 │ │ │ │ │ └── ust2_channel_3 │ │ │ │ ├── no-packet-context │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── sequence │ │ │ │ ├── channel0_0 │ │ │ │ ├── channel0_1 │ │ │ │ ├── channel0_2 │ │ │ │ ├── channel0_3 │ │ │ │ └── metadata │ │ │ │ ├── session-rotation │ │ │ │ ├── 3 │ │ │ │ │ └── ust │ │ │ │ │ │ └── pid │ │ │ │ │ │ ├── 10352 │ │ │ │ │ │ ├── chan_0 │ │ │ │ │ │ ├── chan_1 │ │ │ │ │ │ ├── chan_2 │ │ │ │ │ │ ├── chan_3 │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ │ └── metadata │ │ │ │ │ │ └── 10353 │ │ │ │ │ │ ├── chan_0 │ │ │ │ │ │ ├── chan_1 │ │ │ │ │ │ ├── chan_2 │ │ │ │ │ │ ├── chan_3 │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ │ └── metadata │ │ │ │ └── a │ │ │ │ │ ├── 1 │ │ │ │ │ └── ust │ │ │ │ │ │ └── pid │ │ │ │ │ │ ├── 10352 │ │ │ │ │ │ ├── chan_0 │ │ │ │ │ │ ├── chan_1 │ │ │ │ │ │ ├── chan_2 │ │ │ │ │ │ ├── chan_3 │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ │ └── metadata │ │ │ │ │ │ └── 10353 │ │ │ │ │ │ ├── chan_0 │ │ │ │ │ │ ├── chan_1 │ │ │ │ │ │ ├── chan_2 │ │ │ │ │ │ ├── chan_3 │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ │ └── metadata │ │ │ │ │ └── 2 │ │ │ │ │ └── ust │ │ │ │ │ └── pid │ │ │ │ │ ├── 10352 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ │ │ └── 10353 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ │ ├── smalltrace │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ ├── struct-array-align-elem │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ │ ├── succeed1 │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ ├── succeed2 │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ ├── succeed3 │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ ├── succeed4 │ │ │ │ └── metadata │ │ │ │ ├── trace-with-index │ │ │ │ ├── index │ │ │ │ │ ├── ust_channel_0.idx │ │ │ │ │ ├── ust_channel_1.idx │ │ │ │ │ ├── ust_channel_2.idx │ │ │ │ │ └── ust_channel_3.idx │ │ │ │ ├── metadata │ │ │ │ ├── ust_channel_0 │ │ │ │ ├── ust_channel_1 │ │ │ │ ├── ust_channel_2 │ │ │ │ └── ust_channel_3 │ │ │ │ ├── warnings │ │ │ │ ├── dummystream │ │ │ │ └── metadata │ │ │ │ └── wk-heartbeat-u │ │ │ │ ├── metadata │ │ │ │ ├── u_0 │ │ │ │ ├── u_1 │ │ │ │ ├── u_2 │ │ │ │ ├── u_3 │ │ │ │ ├── u_4 │ │ │ │ ├── u_5 │ │ │ │ ├── u_6 │ │ │ │ └── u_7 │ │ └── 2 │ │ │ ├── fail │ │ │ ├── empty-event-record │ │ │ │ ├── metadata │ │ │ │ └── stream │ │ │ ├── meta-no-stream-cls │ │ │ │ └── metadata │ │ │ └── meta-no-trace-cls-no-stream-cls │ │ │ │ └── metadata │ │ │ ├── intersection │ │ │ └── 3eventsintersect │ │ │ │ ├── metadata │ │ │ │ ├── test_stream_0 │ │ │ │ └── test_stream_1 │ │ │ └── succeed │ │ │ ├── 2packets │ │ │ ├── channel0_2 │ │ │ ├── index │ │ │ │ └── channel0_2.idx │ │ │ └── metadata │ │ │ ├── array-align-elem │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── barectf-event-before-packet │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── debug-info │ │ │ ├── channel0_0 │ │ │ └── metadata │ │ │ ├── env-warning │ │ │ ├── dummystream │ │ │ └── metadata │ │ │ ├── ev-disc-no-ts-begin-end │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── fl-bm │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── lttng-crash │ │ │ ├── chan_0 │ │ │ └── metadata │ │ │ ├── lttng-event-after-packet │ │ │ ├── chan_0 │ │ │ └── metadata │ │ │ ├── lttng-tracefile-rotation │ │ │ ├── README │ │ │ └── kernel │ │ │ │ ├── index │ │ │ │ ├── mychan_0_0.idx │ │ │ │ ├── mychan_0_1.idx │ │ │ │ ├── mychan_0_2.idx │ │ │ │ ├── mychan_1_0.idx │ │ │ │ ├── mychan_1_1.idx │ │ │ │ ├── mychan_1_2.idx │ │ │ │ ├── mychan_2_0.idx │ │ │ │ ├── mychan_2_1.idx │ │ │ │ ├── mychan_2_2.idx │ │ │ │ ├── mychan_3_0.idx │ │ │ │ └── mychan_3_1.idx │ │ │ │ ├── metadata │ │ │ │ ├── mychan_0_0 │ │ │ │ ├── mychan_0_1 │ │ │ │ ├── mychan_0_2 │ │ │ │ ├── mychan_1_0 │ │ │ │ ├── mychan_1_1 │ │ │ │ ├── mychan_1_2 │ │ │ │ ├── mychan_2_0 │ │ │ │ ├── mychan_2_1 │ │ │ │ ├── mychan_2_2 │ │ │ │ ├── mychan_3_0 │ │ │ │ └── mychan_3_1 │ │ │ ├── meta-clk-cls-before-trace-cls │ │ │ └── metadata │ │ │ ├── meta-ctx-sequence │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── meta-variant-no-underscore │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── meta-variant-one-underscore │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── meta-variant-reserved-keywords │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── meta-variant-same-with-underscore │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── meta-variant-two-underscores │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── multi-domains │ │ │ ├── kernel │ │ │ │ ├── index │ │ │ │ │ ├── kernel_channel_0.idx │ │ │ │ │ ├── kernel_channel_1.idx │ │ │ │ │ ├── kernel_channel_2.idx │ │ │ │ │ └── kernel_channel_3.idx │ │ │ │ ├── kernel_channel_0 │ │ │ │ ├── kernel_channel_1 │ │ │ │ ├── kernel_channel_2 │ │ │ │ ├── kernel_channel_3 │ │ │ │ └── metadata │ │ │ └── ust │ │ │ │ ├── index │ │ │ │ ├── ust2_channel_0.idx │ │ │ │ ├── ust2_channel_1.idx │ │ │ │ ├── ust2_channel_2.idx │ │ │ │ └── ust2_channel_3.idx │ │ │ │ ├── metadata │ │ │ │ ├── ust2_channel_0 │ │ │ │ ├── ust2_channel_1 │ │ │ │ ├── ust2_channel_2 │ │ │ │ └── ust2_channel_3 │ │ │ ├── no-packet-context │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── sequence │ │ │ ├── channel0_0 │ │ │ ├── channel0_1 │ │ │ ├── channel0_2 │ │ │ ├── channel0_3 │ │ │ └── metadata │ │ │ ├── session-rotation │ │ │ ├── 3 │ │ │ │ └── ust │ │ │ │ │ └── pid │ │ │ │ │ ├── 10352 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ │ │ └── 10353 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ └── a │ │ │ │ ├── 1 │ │ │ │ └── ust │ │ │ │ │ └── pid │ │ │ │ │ ├── 10352 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ │ │ └── 10353 │ │ │ │ │ ├── chan_0 │ │ │ │ │ ├── chan_1 │ │ │ │ │ ├── chan_2 │ │ │ │ │ ├── chan_3 │ │ │ │ │ ├── index │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ └── chan_3.idx │ │ │ │ │ └── metadata │ │ │ │ └── 2 │ │ │ │ └── ust │ │ │ │ └── pid │ │ │ │ ├── 10352 │ │ │ │ ├── chan_0 │ │ │ │ ├── chan_1 │ │ │ │ ├── chan_2 │ │ │ │ ├── chan_3 │ │ │ │ ├── index │ │ │ │ │ ├── chan_0.idx │ │ │ │ │ ├── chan_1.idx │ │ │ │ │ ├── chan_2.idx │ │ │ │ │ └── chan_3.idx │ │ │ │ └── metadata │ │ │ │ └── 10353 │ │ │ │ ├── chan_0 │ │ │ │ ├── chan_1 │ │ │ │ ├── chan_2 │ │ │ │ ├── chan_3 │ │ │ │ ├── index │ │ │ │ ├── chan_0.idx │ │ │ │ ├── chan_1.idx │ │ │ │ ├── chan_2.idx │ │ │ │ └── chan_3.idx │ │ │ │ └── metadata │ │ │ ├── smalltrace │ │ │ ├── dummystream │ │ │ └── metadata │ │ │ ├── struct-array-align-elem │ │ │ ├── metadata │ │ │ └── stream │ │ │ ├── succeed1 │ │ │ ├── dummystream │ │ │ └── metadata │ │ │ ├── succeed2 │ │ │ ├── dummystream │ │ │ └── metadata │ │ │ ├── trace-with-index │ │ │ ├── index │ │ │ │ ├── ust_channel_0.idx │ │ │ │ ├── ust_channel_1.idx │ │ │ │ ├── ust_channel_2.idx │ │ │ │ └── ust_channel_3.idx │ │ │ ├── metadata │ │ │ ├── ust_channel_0 │ │ │ ├── ust_channel_1 │ │ │ ├── ust_channel_2 │ │ │ └── ust_channel_3 │ │ │ └── wk-heartbeat-u │ │ │ ├── metadata │ │ │ ├── u_0 │ │ │ ├── u_1 │ │ │ ├── u_2 │ │ │ ├── u_3 │ │ │ ├── u_4 │ │ │ ├── u_5 │ │ │ ├── u_6 │ │ │ └── u_7 │ └── plugins │ │ ├── flt.lttng-utils.debug-info │ │ ├── Makefile │ │ ├── README.md │ │ ├── i386-linux-gnu │ │ │ ├── build-id │ │ │ │ ├── .build-id │ │ │ │ │ └── cd │ │ │ │ │ │ └── d98cdd87f7fe64c13b6daad553987eafd40cbb.debug │ │ │ │ └── libhello-so │ │ │ ├── debug-link │ │ │ │ ├── libhello-so │ │ │ │ └── libhello-so.debug │ │ │ ├── dwarf-full │ │ │ │ └── libhello-so │ │ │ └── elf-only │ │ │ │ └── libhello-so │ │ ├── libhello.c │ │ ├── libhello.h │ │ ├── main.c │ │ ├── powerpc-linux-gnu │ │ │ ├── build-id │ │ │ │ ├── .build-id │ │ │ │ │ └── cd │ │ │ │ │ │ └── d98cdd87f7fe64c13b6daad553987eafd40cbb.debug │ │ │ │ └── libhello-so │ │ │ ├── debug-link │ │ │ │ ├── libhello-so │ │ │ │ └── libhello-so.debug │ │ │ ├── dwarf-full │ │ │ │ └── libhello-so │ │ │ └── elf-only │ │ │ │ └── libhello-so │ │ ├── powerpc64le-linux-gnu │ │ │ ├── build-id │ │ │ │ ├── .build-id │ │ │ │ │ └── cd │ │ │ │ │ │ └── d98cdd87f7fe64c13b6daad553987eafd40cbb.debug │ │ │ │ └── libhello-so │ │ │ ├── debug-link │ │ │ │ ├── libhello-so │ │ │ │ └── libhello-so.debug │ │ │ ├── dwarf-full │ │ │ │ └── libhello-so │ │ │ └── elf-only │ │ │ │ └── libhello-so │ │ ├── tp.c │ │ ├── tp.h │ │ ├── trace-debug-info-mip0.expect │ │ ├── trace-debug-info-mip1.expect │ │ └── x86-64-linux-gnu │ │ │ ├── build-id │ │ │ ├── .build-id │ │ │ │ └── cd │ │ │ │ │ └── d98cdd87f7fe64c13b6daad553987eafd40cbb.debug │ │ │ └── libhello-so │ │ │ ├── debug-link │ │ │ ├── libhello-so │ │ │ └── libhello-so.debug │ │ │ ├── dwarf-full │ │ │ └── libhello-so │ │ │ └── elf-only │ │ │ └── libhello-so │ │ ├── flt.utils.muxer │ │ ├── bt_plugin_muxer_test.py │ │ └── succeed │ │ │ ├── basic-timestamp-ordering.expect │ │ │ ├── diff-event-class-id.expect │ │ │ ├── diff-event-class-name.expect │ │ │ ├── diff-inactivity-msg-cs.expect │ │ │ ├── diff-stream-class-id.expect │ │ │ ├── diff-stream-class-name.expect │ │ │ ├── diff-stream-class-no-name.expect │ │ │ ├── diff-stream-id.expect │ │ │ ├── diff-stream-name.expect │ │ │ ├── diff-stream-no-name.expect │ │ │ ├── diff-trace-name.expect │ │ │ └── multi-iter-ordering.expect │ │ ├── flt.utils.trimmer │ │ └── bt_plugin_trimmer_test.py │ │ ├── sink.ctf.fs │ │ ├── assume-single-trace │ │ │ └── bt_plugin_foo.py │ │ ├── stream-names │ │ │ └── bt_plugin_foo.py │ │ └── succeed │ │ │ ├── trace-double-ctf1.expect │ │ │ ├── trace-double-ctf2.expect │ │ │ ├── trace-float-ctf1.expect │ │ │ ├── trace-float-ctf2.expect │ │ │ ├── trace-meta-variant-no-underscore-ctf1.expect │ │ │ ├── trace-meta-variant-one-underscore-ctf1.expect │ │ │ ├── trace-meta-variant-reserved-keywords-ctf1.expect │ │ │ ├── trace-meta-variant-same-with-underscore-ctf1.expect │ │ │ └── trace-meta-variant-two-underscores-ctf1.expect │ │ ├── sink.text.details │ │ └── succeed │ │ │ ├── default-compact-ctf1-mip0.expect │ │ │ ├── default-compact-ctf1-mip1.expect │ │ │ ├── default-compact-ctf2-mip1.expect │ │ │ ├── default-compact-without-metadata.expect │ │ │ ├── default-compact-without-time-ctf1-mip0.expect │ │ │ ├── default-compact-without-time-ctf1-mip1.expect │ │ │ ├── default-compact-without-time-ctf2-mip1.expect │ │ │ ├── default-ctf1-mip0.expect │ │ │ ├── default-ctf1-mip1.expect │ │ │ ├── default-ctf2-mip1.expect │ │ │ ├── default-without-data-ctf1-mip0.expect │ │ │ ├── default-without-data-ctf1-mip1.expect │ │ │ ├── default-without-data-ctf2-mip1.expect │ │ │ ├── default-without-data-without-metadata.expect │ │ │ ├── default-without-metadata-mip0.expect │ │ │ ├── default-without-metadata-mip1.expect │ │ │ ├── default-without-names-ctf1-mip0.expect │ │ │ ├── default-without-names-ctf1-mip1.expect │ │ │ ├── default-without-names-ctf2-mip1.expect │ │ │ ├── default-without-time-ctf1-mip0.expect │ │ │ ├── default-without-time-ctf1-mip1.expect │ │ │ ├── default-without-time-ctf2-mip1.expect │ │ │ ├── default-without-trace-name-ctf1-mip0.expect │ │ │ ├── default-without-trace-name-ctf1-mip1.expect │ │ │ ├── default-without-trace-name-ctf2-mip1.expect │ │ │ ├── default-without-uuid-ctf1-mip0.expect │ │ │ ├── default-without-uuid-ctf1-mip1.expect │ │ │ ├── default-without-uuid-ctf2-mip1.expect │ │ │ └── no-packet-context.expect │ │ ├── sink.text.pretty │ │ ├── bt_plugin_pretty_test.py │ │ └── fl-bm-ctf2.expect │ │ ├── src.ctf.fs │ │ ├── fail │ │ │ ├── empty-event-record.expect │ │ │ └── valid-events-then-invalid-events.expect │ │ ├── field │ │ │ ├── bt_plugin_test_text.py │ │ │ ├── ctf-1 │ │ │ │ ├── pass-fixed-len-uint-32-be.mp │ │ │ │ ├── pass-fixed-len-uint-32-le.mp │ │ │ │ ├── pass-static-len-array-of-struct.mp │ │ │ │ ├── pass-struct-empty.mp │ │ │ │ ├── pass-struct.mp │ │ │ │ └── pass-variant.mp │ │ │ └── data_from_mp.py │ │ ├── query │ │ │ ├── metadata-info-crlf-metadata.expect │ │ │ ├── metadata-info-lf-metadata.expect │ │ │ └── metadata-info-succeed1.expect │ │ └── succeed │ │ │ ├── clock-offset-goes-back-in-time │ │ │ ├── chunk1.mctf │ │ │ └── chunk2.mctf │ │ │ ├── trace-2packets-barectf-event-before-packet-ctf1-mip0.expect │ │ │ ├── trace-2packets-barectf-event-before-packet-ctf1-mip1.expect │ │ │ ├── trace-2packets-barectf-event-before-packet-ctf2-mip1.expect │ │ │ ├── trace-2packets-ctf1-mip0.expect │ │ │ ├── trace-2packets-ctf1-mip1.expect │ │ │ ├── trace-2packets-ctf2-mip1.expect │ │ │ ├── trace-array-align-elem.expect │ │ │ ├── trace-barectf-event-before-packet-ctf1-mip0.expect │ │ │ ├── trace-barectf-event-before-packet-ctf1-mip1.expect │ │ │ ├── trace-barectf-event-before-packet-ctf2-mip1.expect │ │ │ ├── trace-clock-offset-goes-back-in-time.expect │ │ │ ├── trace-def-clk-freq-ctf1-mip0.expect │ │ │ ├── trace-def-clk-freq-ctf1-mip1.expect │ │ │ ├── trace-lttng-crash.expect │ │ │ ├── trace-lttng-event-after-packet.expect │ │ │ ├── trace-lttng-tracefile-rotation-ctf1-mip0.expect │ │ │ ├── trace-lttng-tracefile-rotation-ctf1-mip1.expect │ │ │ ├── trace-lttng-tracefile-rotation-ctf2-mip1.expect │ │ │ ├── trace-meta-clk-cls-before-trace-cls.expect │ │ │ ├── trace-meta-ctx-sequence.expect │ │ │ ├── trace-session-rotation-ctf1-mip0.expect │ │ │ ├── trace-session-rotation-ctf1-mip1.expect │ │ │ ├── trace-session-rotation-ctf2-mip1.expect │ │ │ ├── trace-simple.expect │ │ │ ├── trace-smalltrace-mip0.expect │ │ │ ├── trace-smalltrace-mip1.expect │ │ │ └── trace-struct-array-align-elem.expect │ │ └── src.ctf.lttng-live │ │ ├── base-2.15.json │ │ ├── base.json │ │ ├── cli-base-2.15.expect │ │ ├── cli-base.expect │ │ ├── cli-list-sessions-2.15.expect │ │ ├── cli-list-sessions.expect │ │ ├── cli-multi-domains-2.15.expect │ │ ├── cli-multi-domains.expect │ │ ├── inactivity-discarded-packet.expect │ │ ├── inactivity-discarded-packet.json │ │ ├── invalid-metadata.json │ │ ├── list-sessions-2.15.json │ │ ├── list-sessions.json │ │ ├── lttng_live_server.py │ │ ├── multi-domains-2.15.json │ │ ├── multi-domains-inverse-2.15.json │ │ ├── multi-domains-inverse.json │ │ ├── multi-domains.json │ │ ├── new-streams.expect │ │ ├── new-streams.json │ │ ├── rate-limited.json │ │ ├── split-metadata.expect │ │ ├── split-metadata.json │ │ ├── stored-values.expect │ │ └── stored-values.json ├── lib │ ├── Makefile.am │ ├── conds │ │ ├── clk-cls-compat-postconds-triggers.cpp │ │ ├── clk-cls-compat-postconds-triggers.hpp │ │ ├── conds-triggers.cpp │ │ ├── test-conds.sh │ │ ├── test.py │ │ ├── utils.cpp │ │ └── utils.hpp │ ├── test-bt-uuid.c │ ├── test-bt-values.c │ ├── test-fields-bin.cpp │ ├── test-fields.sh │ ├── test-graph-topo.c │ ├── test-mip.c │ ├── test-plugin-init-fail-plugin │ │ └── plugin-init-fail.cpp │ ├── test-plugin-init-fail.cpp │ ├── test-plugin-init-fail.sh │ ├── test-plugins-plugins │ │ ├── minimal.c │ │ └── sfs.c │ ├── test-plugins.cpp │ ├── test-plugins.sh │ ├── test-remove-destruction-listener-in-destruction-listener.c │ ├── test-simple-sink.c │ ├── test-trace-ir-ref.c │ └── utils │ │ ├── run-in.cpp │ │ └── run-in.hpp ├── param-validation │ ├── Makefile.am │ └── test-param-validation.c ├── plugins │ ├── Makefile.am │ ├── flt.lttng-utils.debug-info │ │ ├── Makefile.am │ │ ├── test-bin-info-i386-linux-gnu.sh │ │ ├── test-bin-info-powerpc-linux-gnu.sh │ │ ├── test-bin-info-powerpc64le-linux-gnu.sh │ │ ├── test-bin-info-x86-64-linux-gnu.sh │ │ ├── test-bin-info.cpp │ │ ├── test-dwarf-i386-linux-gnu.sh │ │ ├── test-dwarf-powerpc-linux-gnu.sh │ │ ├── test-dwarf-powerpc64le-linux-gnu.sh │ │ ├── test-dwarf-x86-64-linux-gnu.sh │ │ ├── test-dwarf.cpp │ │ └── test-succeed.sh │ ├── flt.utils.muxer │ │ ├── Makefile.am │ │ ├── succeed │ │ │ ├── Makefile.am │ │ │ └── test-succeed.sh │ │ ├── test-clock-compatibility.cpp │ │ └── test-clock-compatibility.sh │ ├── flt.utils.trimmer │ │ ├── Makefile.am │ │ └── test-trimming.sh │ ├── sink.ctf.fs │ │ ├── Makefile.am │ │ ├── succeed │ │ │ ├── Makefile.am │ │ │ ├── gen-trace-double.c │ │ │ ├── gen-trace-float.c │ │ │ └── test-succeed.sh │ │ ├── test-assume-single-trace.sh │ │ └── test-stream-names.sh │ ├── sink.text.details │ │ └── succeed │ │ │ └── test-succeed.sh │ ├── sink.text.pretty │ │ ├── Makefile.am │ │ ├── test-enum.sh │ │ ├── test-pretty-python.sh │ │ ├── test-pretty.sh │ │ └── test_pretty.py │ ├── src.ctf.fs │ │ ├── Makefile.am │ │ ├── fail │ │ │ └── test-fail.sh │ │ ├── field │ │ │ └── test-field.sh │ │ ├── query │ │ │ ├── test-query-metadata-info-py.sh │ │ │ ├── test-query-metadata-info.sh │ │ │ ├── test-query-support-info.sh │ │ │ ├── test-query-trace-info.sh │ │ │ ├── test_query_metadata_info.py │ │ │ ├── test_query_support_info.py │ │ │ └── test_query_trace_info.py │ │ ├── succeed │ │ │ ├── Makefile.am │ │ │ ├── gen-trace-simple.c │ │ │ └── test-succeed.sh │ │ └── test-deterministic-ordering.sh │ └── src.ctf.lttng-live │ │ ├── test-live.sh │ │ ├── test-query.sh │ │ └── test_query.py ├── python-plugin-provider │ ├── bt_plugin_test_python_plugin_provider.py │ ├── test-python-plugin-provider.sh │ └── test_python_plugin_provider.py └── utils │ ├── Makefile.am │ ├── common.c │ ├── common.h │ ├── common.hpp │ ├── env.sh.in │ ├── python │ ├── bt_plugin_trace_ir_test.py │ ├── cli_params_to_string.py │ ├── mctf.py │ ├── moultipart.py │ ├── normand.py │ ├── split_sort_compare.py │ ├── tap │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── adapter.py │ │ ├── directive.py │ │ ├── formatter.py │ │ ├── line.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── parser.py │ │ ├── rules.py │ │ ├── runner.py │ │ └── tracker.py │ ├── test_all_ctf_versions.py │ ├── test_all_mip_versions.py │ ├── testrunner.py │ ├── tjson.py │ └── typing │ │ ├── typing.py │ │ └── typing.py.license │ ├── run-in-py-env.sh │ ├── tap-driver.sh │ ├── tap │ ├── Makefile.am │ ├── tap.c │ ├── tap.h │ └── tap.sh │ └── utils.sh ├── tools ├── check-include-guard.py ├── check-include-guards.sh ├── format-cpp.sh ├── lint-py.sh └── shellcheck.sh └── version ├── README.adoc └── extra_patches └── README.adoc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.gitreview -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/ChangeLog -------------------------------------------------------------------------------- /CodingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/CodingStyle.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Autoconf-exception-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/Autoconf-exception-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-4-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/BSD-4-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/BSL-1.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/FSFAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/FSFAP.txt -------------------------------------------------------------------------------- /LICENSES/FSFULLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/FSFULLR.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Autoconf-exception-macro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/LicenseRef-Autoconf-exception-macro.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/PSF-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/LICENSES/PSF-2.0.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/README.adoc -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/configure.ac -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/Doxyfile.in -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/Makefile.am -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/README.adoc -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/dox/api-fund.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/dox/api-fund.dox -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/dox/examples.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/dox/examples.dox -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/dox/group-trace-ir.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/dox/group-trace-ir.dox -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/dox/guides.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/dox/guides.dox -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/dox/main-page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/dox/main-page.dox -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/examples/distill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/examples/distill.c -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/examples/dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/examples/dust -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/examples/dust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/examples/dust.c -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/examples/epitome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/examples/epitome.c -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/examples/vestige-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/examples/vestige-plugin.c -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/all-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/all-fields.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/clocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/clocks.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/complex-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/complex-graph.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/component-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/component-zoom.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/component.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/darray-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/darray-link.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/dblob-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/dblob-link.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/error-reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/error-reporting.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-array.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-ba.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-blob.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-bool.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-enum.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-int.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-opt.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-real.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-string.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-struct.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-to-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-to-field.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/fc-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/fc-var.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/graph-lifetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/graph-lifetime.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/linking.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/msg-iter-cls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/msg-iter-cls.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/msg-iter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/msg-iter.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/opt-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/opt-link.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/plugin.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/trace-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/trace-structure.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/images/var-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/images/var-link.png -------------------------------------------------------------------------------- /doc/api/libbabeltrace2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/api/libbabeltrace2/style.css -------------------------------------------------------------------------------- /doc/bindings/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/Makefile.am -------------------------------------------------------------------------------- /doc/bindings/python/ext/bt2sphinxurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/ext/bt2sphinxurl.py -------------------------------------------------------------------------------- /doc/bindings/python/source/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/source/common.rst -------------------------------------------------------------------------------- /doc/bindings/python/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/source/conf.py -------------------------------------------------------------------------------- /doc/bindings/python/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/source/examples.rst -------------------------------------------------------------------------------- /doc/bindings/python/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/source/index.rst -------------------------------------------------------------------------------- /doc/bindings/python/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/bindings/python/source/installation.rst -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref01.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref02.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref03.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref04.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref05.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref06.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref07.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref08.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref09.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref10.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref11.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref12.png -------------------------------------------------------------------------------- /doc/impl-details-images/bt-ref13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details-images/bt-ref13.png -------------------------------------------------------------------------------- /doc/impl-details.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/impl-details.adoc -------------------------------------------------------------------------------- /doc/internal/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/internal/Doxyfile.in -------------------------------------------------------------------------------- /doc/internal/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/internal/Makefile.am -------------------------------------------------------------------------------- /doc/internal/all.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/internal/all.dox -------------------------------------------------------------------------------- /doc/internal/cpp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/internal/cpp.dox -------------------------------------------------------------------------------- /doc/internal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/internal/style.css -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/README.adoc -------------------------------------------------------------------------------- /doc/man/asciidoc-attrs.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/asciidoc-attrs.conf.in -------------------------------------------------------------------------------- /doc/man/babeltrace2-convert.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-convert.1.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-filter.utils.muxer.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-filter.utils.muxer.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-filter.utils.trimmer.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-filter.utils.trimmer.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-help.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-help.1.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-intro.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-intro.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-list-plugins.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-list-plugins.1.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-plugin-ctf.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-plugin-ctf.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-plugin-lttng-utils.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-plugin-lttng-utils.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-plugin-text.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-plugin-text.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-plugin-utils.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-plugin-utils.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-query.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-query.1.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-run.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-run.1.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-sink.ctf.fs.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-sink.ctf.fs.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-sink.text.details.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-sink.text.details.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-sink.text.pretty.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-sink.text.pretty.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-sink.utils.counter.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-sink.utils.counter.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-sink.utils.dummy.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-sink.utils.dummy.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-source.ctf.fs.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-source.ctf.fs.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-source.ctf.lttng-live.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-source.ctf.lttng-live.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2-source.text.dmesg.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2-source.text.dmesg.7.txt -------------------------------------------------------------------------------- /doc/man/babeltrace2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/babeltrace2.1.txt -------------------------------------------------------------------------------- /doc/man/bt-asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/bt-asciidoc.conf -------------------------------------------------------------------------------- /doc/man/common-cli-env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-cli-env.txt -------------------------------------------------------------------------------- /doc/man/common-cli-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-cli-files.txt -------------------------------------------------------------------------------- /doc/man/common-cmd-footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-cmd-footer.txt -------------------------------------------------------------------------------- /doc/man/common-cmd-info-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-cmd-info-options.txt -------------------------------------------------------------------------------- /doc/man/common-cmd-params-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-cmd-params-format.txt -------------------------------------------------------------------------------- /doc/man/common-common-env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-common-env.txt -------------------------------------------------------------------------------- /doc/man/common-convert-examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-convert-examples.txt -------------------------------------------------------------------------------- /doc/man/common-footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-footer.txt -------------------------------------------------------------------------------- /doc/man/common-gen-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-gen-options.txt -------------------------------------------------------------------------------- /doc/man/common-lib-env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-lib-env.txt -------------------------------------------------------------------------------- /doc/man/common-log-levels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-log-levels.txt -------------------------------------------------------------------------------- /doc/man/common-see-babeltrace2-intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-see-babeltrace2-intro.txt -------------------------------------------------------------------------------- /doc/man/common-trimmer-time-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/common-trimmer-time-format.txt -------------------------------------------------------------------------------- /doc/man/manpage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/doc/man/manpage.xsl -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/clock-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/clock-class.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/clock.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/event-fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/event-fields.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/event-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/event-types.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/event.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/field-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/field-types.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/fields.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/object.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/stream-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/stream-class.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/stream.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/trace.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/types.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/utils.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/visitor.h -------------------------------------------------------------------------------- /include/babeltrace2-ctf-writer/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2-ctf-writer/writer.h -------------------------------------------------------------------------------- /include/babeltrace2/babeltrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/babeltrace.h -------------------------------------------------------------------------------- /include/babeltrace2/error-reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/error-reporting.h -------------------------------------------------------------------------------- /include/babeltrace2/func-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/func-status.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/component-class-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/component-class-dev.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/component-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/component-class.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/component.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/connection.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/graph.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/interrupter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/interrupter.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/message-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/message-iterator.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/message.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/port.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/query-executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/query-executor.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/self-component-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/self-component-class.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/self-component-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/self-component-port.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/self-component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/self-component.h -------------------------------------------------------------------------------- /include/babeltrace2/graph/self-message-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/graph/self-message-iterator.h -------------------------------------------------------------------------------- /include/babeltrace2/integer-range-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/integer-range-set.h -------------------------------------------------------------------------------- /include/babeltrace2/logging-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/logging-defs.h -------------------------------------------------------------------------------- /include/babeltrace2/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/logging.h -------------------------------------------------------------------------------- /include/babeltrace2/plugin/plugin-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/plugin/plugin-dev.h -------------------------------------------------------------------------------- /include/babeltrace2/plugin/plugin-loading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/plugin/plugin-loading.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/clock-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/clock-class.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/clock-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/clock-snapshot.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/event-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/event-class.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/event.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/field-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/field-class.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/field-location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/field-location.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/field-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/field-path.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/field.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/packet.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/stream-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/stream-class.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/stream.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/trace-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/trace-class.h -------------------------------------------------------------------------------- /include/babeltrace2/trace-ir/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/trace-ir/trace.h -------------------------------------------------------------------------------- /include/babeltrace2/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/types.h -------------------------------------------------------------------------------- /include/babeltrace2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/util.h -------------------------------------------------------------------------------- /include/babeltrace2/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/value.h -------------------------------------------------------------------------------- /include/babeltrace2/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/include/babeltrace2/version.h -------------------------------------------------------------------------------- /m4/ac_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ac_extensions.m4 -------------------------------------------------------------------------------- /m4/ae_check_sphinx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_check_sphinx.m4 -------------------------------------------------------------------------------- /m4/ae_config_feature.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_config_feature.m4 -------------------------------------------------------------------------------- /m4/ae_in_git_repo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_in_git_repo.m4 -------------------------------------------------------------------------------- /m4/ae_lib_elfutils.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_lib_elfutils.m4 -------------------------------------------------------------------------------- /m4/ae_pprint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_pprint.m4 -------------------------------------------------------------------------------- /m4/ae_python_modules.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ae_python_modules.m4 -------------------------------------------------------------------------------- /m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_append_link_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_append_link_flags.m4 -------------------------------------------------------------------------------- /m4/ax_c___attribute__.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_c___attribute__.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/ax_lib_socket_nsl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_lib_socket_nsl.m4 -------------------------------------------------------------------------------- /m4/ax_pkg_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_pkg_swig.m4 -------------------------------------------------------------------------------- /m4/ax_prog_bison_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_prog_bison_version.m4 -------------------------------------------------------------------------------- /m4/ax_prog_doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_prog_doxygen.m4 -------------------------------------------------------------------------------- /m4/ax_prog_flex_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_prog_flex_version.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/Makefile.common.inc -------------------------------------------------------------------------------- /src/argpar/argpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/argpar/argpar.c -------------------------------------------------------------------------------- /src/argpar/argpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/argpar/argpar.h -------------------------------------------------------------------------------- /src/argpar/argpar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/argpar/argpar.hpp -------------------------------------------------------------------------------- /src/autodisc/autodisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/autodisc/autodisc.c -------------------------------------------------------------------------------- /src/autodisc/autodisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/autodisc/autodisc.h -------------------------------------------------------------------------------- /src/babeltrace2-ctf-writer.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/babeltrace2-ctf-writer.pc.in -------------------------------------------------------------------------------- /src/babeltrace2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/babeltrace2.pc.in -------------------------------------------------------------------------------- /src/bindings/python/bt2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/Makefile.am -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/__init__.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/clock_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/clock_class.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/clock_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/clock_snapshot.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/component.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/connection.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/error.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/event.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/event_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/event_class.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/field.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/field_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/field_class.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/field_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/field_location.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/field_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/field_path.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/graph.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/integer_range_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/integer_range_set.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/interrupter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/interrupter.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/local_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/local_typing.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/logging.cpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/logging.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/logging.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/message.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/message_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/message_iterator.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/mip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/mip.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_autodisc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_autodisc.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_component.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_component.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_error.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_error.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_error.i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_error.i.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_event.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_event.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_field.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_field.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_graph.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_graph.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_graph.i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_graph.i.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_logging.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_logging.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_message.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_message.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_mip.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_mip.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_mip.i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_mip.i.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_packet.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_packet.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_plugin.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_plugin.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_port.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_port.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_stream.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_stream.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_trace.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_trace.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_trace.i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_trace.i.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_value.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_value.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_value.i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_value.i.hpp -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/native_bt_version.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/native_bt_version.i -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/object.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/packet.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/plugin.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/port.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/py_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/py_plugin.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/query_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/query_executor.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/stream.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/stream_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/stream_class.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/trace.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/trace_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/trace_class.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/typing_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/typing_mod.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/user_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/user_attributes.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/utils.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/value.py -------------------------------------------------------------------------------- /src/bindings/python/bt2/bt2/version.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/bt2/version.py.in -------------------------------------------------------------------------------- /src/bindings/python/bt2/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/bindings/python/bt2/setup.py.in -------------------------------------------------------------------------------- /src/cli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/Makefile.am -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args-connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args-connect.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args-connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args-connect.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args-default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args-default.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args-default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args-default.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg-cli-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg-cli-args.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-cfg.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-log-level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-log-level.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-log-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-log-level.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-plugins.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-plugins.h -------------------------------------------------------------------------------- /src/cli/babeltrace2-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-query.c -------------------------------------------------------------------------------- /src/cli/babeltrace2-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2-query.h -------------------------------------------------------------------------------- /src/cli/babeltrace2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/babeltrace2.c -------------------------------------------------------------------------------- /src/cli/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/logging.cpp -------------------------------------------------------------------------------- /src/cli/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cli/logging.h -------------------------------------------------------------------------------- /src/common/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/align.h -------------------------------------------------------------------------------- /src/common/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/assert.c -------------------------------------------------------------------------------- /src/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/assert.h -------------------------------------------------------------------------------- /src/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/common.c -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/list.h -------------------------------------------------------------------------------- /src/common/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/macros.h -------------------------------------------------------------------------------- /src/common/mmap-align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/mmap-align.h -------------------------------------------------------------------------------- /src/common/safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/safe.h -------------------------------------------------------------------------------- /src/common/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/uuid.c -------------------------------------------------------------------------------- /src/common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/uuid.h -------------------------------------------------------------------------------- /src/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/common/version.h -------------------------------------------------------------------------------- /src/compat/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/bitfield.h -------------------------------------------------------------------------------- /src/compat/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/compiler.h -------------------------------------------------------------------------------- /src/compat/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/endian.h -------------------------------------------------------------------------------- /src/compat/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/fcntl.h -------------------------------------------------------------------------------- /src/compat/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/glib.h -------------------------------------------------------------------------------- /src/compat/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/limits.h -------------------------------------------------------------------------------- /src/compat/memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/memstream.h -------------------------------------------------------------------------------- /src/compat/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/mman.c -------------------------------------------------------------------------------- /src/compat/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/mman.h -------------------------------------------------------------------------------- /src/compat/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/socket.hpp -------------------------------------------------------------------------------- /src/compat/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/stdio.h -------------------------------------------------------------------------------- /src/compat/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/stdlib.h -------------------------------------------------------------------------------- /src/compat/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/time.h -------------------------------------------------------------------------------- /src/compat/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/unistd.h -------------------------------------------------------------------------------- /src/compat/utc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/compat/utc.h -------------------------------------------------------------------------------- /src/cpp-common/bt2/borrowed-object-iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/borrowed-object-iterator.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/borrowed-object-proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/borrowed-object-proxy.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/borrowed-object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/borrowed-object.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/clock-class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/clock-class.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/clock-snapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/clock-snapshot.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/component-class-dev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/component-class-dev.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/component-class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/component-class.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/component-port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/component-port.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/error.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/exc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/exc.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/field-class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/field-class.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/field-location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/field-location.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/field-path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/field-path.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/field.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/graph.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/identity-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/identity-view.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/integer-range-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/integer-range-set.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/integer-range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/integer-range.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/internal/comp-cls-bridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/internal/comp-cls-bridge.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/internal/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/internal/utils.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/logging.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/message-array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/message-array.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/message-iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/message-iterator.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/message.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/optional-borrowed-object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/optional-borrowed-object.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/plugin-dev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/plugin-dev.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/plugin-load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/plugin-load.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/plugin-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/plugin-set.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/plugin.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/private-query-executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/private-query-executor.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/query-executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/query-executor.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/raw-value-proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/raw-value-proxy.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/self-component-class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/self-component-class.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/self-component-port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/self-component-port.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/self-message-iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/self-message-iterator.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/shared-object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/shared-object.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/trace-ir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/trace-ir.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/type-traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/type-traits.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/value.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2/wrap.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/aliases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/aliases.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/align.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/bt2-value-from-json-val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/bt2-value-from-json-val.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/bt2-value-from-json-val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/bt2-value-from-json-val.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/c-string-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/c-string-view.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/call.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/contains.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/data-len.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/data-len.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/endian.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/exc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/exc.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/file-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/file-utils.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/file-utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/file-utils.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/fmt.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/glib-up.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/glib-up.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/join.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/json-val-req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/json-val-req.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/json-val-req.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/json-val-req.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/json-val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/json-val.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/json-val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/json-val.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/libc-up.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/libc-up.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/logging.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/make-span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/make-span.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/observable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/observable.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/parse-json-as-val.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/parse-json-as-val.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/parse-json-as-val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/parse-json-as-val.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/parse-json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/parse-json.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/prio-heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/prio-heap.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/read-fixed-len-int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/read-fixed-len-int.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/regex.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/safe-ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/safe-ops.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/std-int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/std-int.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/str-scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/str-scanner.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/str-scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/str-scanner.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/text-loc-str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/text-loc-str.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/text-loc-str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/text-loc-str.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/text-loc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/text-loc.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/text-loc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/text-loc.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/type-traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/type-traits.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/unicode-conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/unicode-conv.cpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/unicode-conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/unicode-conv.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/uuid.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/val-req.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/val-req.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2c/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2c/vector.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2s/make-unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2s/make-unique.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2s/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2s/optional.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2s/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2s/span.hpp -------------------------------------------------------------------------------- /src/cpp-common/bt2s/string-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/bt2s/string-view.hpp -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/args.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/chrono.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/color.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/compile.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/core.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/format-inl.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/format.cc -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/format.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/os.cc -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/os.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/ostream.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/printf.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/ranges.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/std.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/fmt/xchar.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/nlohmann/json.hpp -------------------------------------------------------------------------------- /src/cpp-common/vendor/optional-lite/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/optional-lite/optional.hpp -------------------------------------------------------------------------------- /src/cpp-common/vendor/optional-lite/optional.hpp.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014-2021 Martin Moene 2 | SPDX-License-Identifier: BSL-1.0 3 | -------------------------------------------------------------------------------- /src/cpp-common/vendor/span-lite/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/span-lite/span.hpp -------------------------------------------------------------------------------- /src/cpp-common/vendor/span-lite/span.hpp.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2021 Martin Moene 2 | SPDX-License-Identifier: BSL-1.0 3 | -------------------------------------------------------------------------------- /src/cpp-common/vendor/wise-enum/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/wise-enum/optional.h -------------------------------------------------------------------------------- /src/cpp-common/vendor/wise-enum/wise_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/cpp-common/vendor/wise-enum/wise_enum.h -------------------------------------------------------------------------------- /src/ctf-writer/assert-pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/assert-pre.h -------------------------------------------------------------------------------- /src/ctf-writer/attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/attributes.c -------------------------------------------------------------------------------- /src/ctf-writer/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/attributes.h -------------------------------------------------------------------------------- /src/ctf-writer/clock-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/clock-class.c -------------------------------------------------------------------------------- /src/ctf-writer/clock-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/clock-class.h -------------------------------------------------------------------------------- /src/ctf-writer/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/clock.c -------------------------------------------------------------------------------- /src/ctf-writer/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/clock.h -------------------------------------------------------------------------------- /src/ctf-writer/event-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/event-class.c -------------------------------------------------------------------------------- /src/ctf-writer/event-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/event-class.h -------------------------------------------------------------------------------- /src/ctf-writer/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/event.c -------------------------------------------------------------------------------- /src/ctf-writer/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/event.h -------------------------------------------------------------------------------- /src/ctf-writer/field-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-path.c -------------------------------------------------------------------------------- /src/ctf-writer/field-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-path.h -------------------------------------------------------------------------------- /src/ctf-writer/field-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-types.c -------------------------------------------------------------------------------- /src/ctf-writer/field-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-types.h -------------------------------------------------------------------------------- /src/ctf-writer/field-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-wrapper.c -------------------------------------------------------------------------------- /src/ctf-writer/field-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/field-wrapper.h -------------------------------------------------------------------------------- /src/ctf-writer/fields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/fields.c -------------------------------------------------------------------------------- /src/ctf-writer/fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/fields.h -------------------------------------------------------------------------------- /src/ctf-writer/functor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/functor.c -------------------------------------------------------------------------------- /src/ctf-writer/functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/functor.h -------------------------------------------------------------------------------- /src/ctf-writer/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/logging.c -------------------------------------------------------------------------------- /src/ctf-writer/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/logging.h -------------------------------------------------------------------------------- /src/ctf-writer/object-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/object-pool.c -------------------------------------------------------------------------------- /src/ctf-writer/object-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/object-pool.h -------------------------------------------------------------------------------- /src/ctf-writer/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/object.c -------------------------------------------------------------------------------- /src/ctf-writer/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/object.h -------------------------------------------------------------------------------- /src/ctf-writer/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/resolve.c -------------------------------------------------------------------------------- /src/ctf-writer/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/resolve.h -------------------------------------------------------------------------------- /src/ctf-writer/stream-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/stream-class.c -------------------------------------------------------------------------------- /src/ctf-writer/stream-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/stream-class.h -------------------------------------------------------------------------------- /src/ctf-writer/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/stream.c -------------------------------------------------------------------------------- /src/ctf-writer/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/stream.h -------------------------------------------------------------------------------- /src/ctf-writer/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/trace.c -------------------------------------------------------------------------------- /src/ctf-writer/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/trace.h -------------------------------------------------------------------------------- /src/ctf-writer/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/utils.c -------------------------------------------------------------------------------- /src/ctf-writer/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/utils.h -------------------------------------------------------------------------------- /src/ctf-writer/validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/validation.c -------------------------------------------------------------------------------- /src/ctf-writer/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/validation.h -------------------------------------------------------------------------------- /src/ctf-writer/values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/values.c -------------------------------------------------------------------------------- /src/ctf-writer/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/values.h -------------------------------------------------------------------------------- /src/ctf-writer/visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/visitor.c -------------------------------------------------------------------------------- /src/ctf-writer/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/visitor.h -------------------------------------------------------------------------------- /src/ctf-writer/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/writer.c -------------------------------------------------------------------------------- /src/ctf-writer/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctf-writer/writer.h -------------------------------------------------------------------------------- /src/ctfser/ctfser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctfser/ctfser.c -------------------------------------------------------------------------------- /src/ctfser/ctfser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/ctfser/ctfser.h -------------------------------------------------------------------------------- /src/fd-cache/fd-cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/fd-cache/fd-cache.cpp -------------------------------------------------------------------------------- /src/fd-cache/fd-cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/fd-cache/fd-cache.hpp -------------------------------------------------------------------------------- /src/gen-version-i.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/gen-version-i.sh -------------------------------------------------------------------------------- /src/lib/assert-cond-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/assert-cond-base.h -------------------------------------------------------------------------------- /src/lib/assert-cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/assert-cond.c -------------------------------------------------------------------------------- /src/lib/assert-cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/assert-cond.h -------------------------------------------------------------------------------- /src/lib/babeltrace2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/babeltrace2.c -------------------------------------------------------------------------------- /src/lib/current-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/current-thread.c -------------------------------------------------------------------------------- /src/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/error.c -------------------------------------------------------------------------------- /src/lib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/error.h -------------------------------------------------------------------------------- /src/lib/func-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/func-status.h -------------------------------------------------------------------------------- /src/lib/graph/component-class-sink-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-class-sink-simple.c -------------------------------------------------------------------------------- /src/lib/graph/component-class-sink-simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-class-sink-simple.h -------------------------------------------------------------------------------- /src/lib/graph/component-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-class.c -------------------------------------------------------------------------------- /src/lib/graph/component-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-class.h -------------------------------------------------------------------------------- /src/lib/graph/component-descriptor-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-descriptor-set.c -------------------------------------------------------------------------------- /src/lib/graph/component-descriptor-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-descriptor-set.h -------------------------------------------------------------------------------- /src/lib/graph/component-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-filter.c -------------------------------------------------------------------------------- /src/lib/graph/component-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-filter.h -------------------------------------------------------------------------------- /src/lib/graph/component-sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-sink.c -------------------------------------------------------------------------------- /src/lib/graph/component-sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-sink.h -------------------------------------------------------------------------------- /src/lib/graph/component-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-source.c -------------------------------------------------------------------------------- /src/lib/graph/component-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component-source.h -------------------------------------------------------------------------------- /src/lib/graph/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component.c -------------------------------------------------------------------------------- /src/lib/graph/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/component.h -------------------------------------------------------------------------------- /src/lib/graph/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/connection.c -------------------------------------------------------------------------------- /src/lib/graph/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/connection.h -------------------------------------------------------------------------------- /src/lib/graph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/graph.c -------------------------------------------------------------------------------- /src/lib/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/graph.h -------------------------------------------------------------------------------- /src/lib/graph/interrupter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/interrupter.c -------------------------------------------------------------------------------- /src/lib/graph/interrupter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/interrupter.h -------------------------------------------------------------------------------- /src/lib/graph/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/iterator.c -------------------------------------------------------------------------------- /src/lib/graph/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/iterator.h -------------------------------------------------------------------------------- /src/lib/graph/message-iterator-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message-iterator-class.c -------------------------------------------------------------------------------- /src/lib/graph/message-iterator-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message-iterator-class.h -------------------------------------------------------------------------------- /src/lib/graph/message/discarded-items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/discarded-items.c -------------------------------------------------------------------------------- /src/lib/graph/message/discarded-items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/discarded-items.h -------------------------------------------------------------------------------- /src/lib/graph/message/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/event.c -------------------------------------------------------------------------------- /src/lib/graph/message/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/event.h -------------------------------------------------------------------------------- /src/lib/graph/message/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/message.c -------------------------------------------------------------------------------- /src/lib/graph/message/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/message.h -------------------------------------------------------------------------------- /src/lib/graph/message/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/packet.c -------------------------------------------------------------------------------- /src/lib/graph/message/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/packet.h -------------------------------------------------------------------------------- /src/lib/graph/message/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/stream.c -------------------------------------------------------------------------------- /src/lib/graph/message/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/message/stream.h -------------------------------------------------------------------------------- /src/lib/graph/mip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/mip.c -------------------------------------------------------------------------------- /src/lib/graph/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/port.c -------------------------------------------------------------------------------- /src/lib/graph/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/port.h -------------------------------------------------------------------------------- /src/lib/graph/query-executor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/query-executor.c -------------------------------------------------------------------------------- /src/lib/graph/query-executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/graph/query-executor.h -------------------------------------------------------------------------------- /src/lib/integer-range-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/integer-range-set.c -------------------------------------------------------------------------------- /src/lib/integer-range-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/integer-range-set.h -------------------------------------------------------------------------------- /src/lib/lib-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/lib-logging.c -------------------------------------------------------------------------------- /src/lib/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/logging.c -------------------------------------------------------------------------------- /src/lib/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/logging.h -------------------------------------------------------------------------------- /src/lib/object-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/object-pool.c -------------------------------------------------------------------------------- /src/lib/object-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/object-pool.h -------------------------------------------------------------------------------- /src/lib/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/object.h -------------------------------------------------------------------------------- /src/lib/plugin/plugin-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/plugin/plugin-so.c -------------------------------------------------------------------------------- /src/lib/plugin/plugin-so.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/plugin/plugin-so.h -------------------------------------------------------------------------------- /src/lib/plugin/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/plugin/plugin.c -------------------------------------------------------------------------------- /src/lib/plugin/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/plugin/plugin.h -------------------------------------------------------------------------------- /src/lib/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/property.h -------------------------------------------------------------------------------- /src/lib/trace-ir/attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/attributes.c -------------------------------------------------------------------------------- /src/lib/trace-ir/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/attributes.h -------------------------------------------------------------------------------- /src/lib/trace-ir/clock-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/clock-class.c -------------------------------------------------------------------------------- /src/lib/trace-ir/clock-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/clock-class.h -------------------------------------------------------------------------------- /src/lib/trace-ir/clock-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/clock-snapshot.c -------------------------------------------------------------------------------- /src/lib/trace-ir/clock-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/clock-snapshot.h -------------------------------------------------------------------------------- /src/lib/trace-ir/event-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/event-class.c -------------------------------------------------------------------------------- /src/lib/trace-ir/event-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/event-class.h -------------------------------------------------------------------------------- /src/lib/trace-ir/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/event.c -------------------------------------------------------------------------------- /src/lib/trace-ir/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/event.h -------------------------------------------------------------------------------- /src/lib/trace-ir/field-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-class.c -------------------------------------------------------------------------------- /src/lib/trace-ir/field-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-class.h -------------------------------------------------------------------------------- /src/lib/trace-ir/field-location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-location.c -------------------------------------------------------------------------------- /src/lib/trace-ir/field-location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-location.h -------------------------------------------------------------------------------- /src/lib/trace-ir/field-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-path.c -------------------------------------------------------------------------------- /src/lib/trace-ir/field-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-path.h -------------------------------------------------------------------------------- /src/lib/trace-ir/field-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-wrapper.c -------------------------------------------------------------------------------- /src/lib/trace-ir/field-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field-wrapper.h -------------------------------------------------------------------------------- /src/lib/trace-ir/field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field.c -------------------------------------------------------------------------------- /src/lib/trace-ir/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/field.h -------------------------------------------------------------------------------- /src/lib/trace-ir/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/packet.c -------------------------------------------------------------------------------- /src/lib/trace-ir/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/packet.h -------------------------------------------------------------------------------- /src/lib/trace-ir/resolve-field-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/resolve-field-path.c -------------------------------------------------------------------------------- /src/lib/trace-ir/resolve-field-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/resolve-field-path.h -------------------------------------------------------------------------------- /src/lib/trace-ir/resolve-field-xref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/resolve-field-xref.h -------------------------------------------------------------------------------- /src/lib/trace-ir/stream-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/stream-class.c -------------------------------------------------------------------------------- /src/lib/trace-ir/stream-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/stream-class.h -------------------------------------------------------------------------------- /src/lib/trace-ir/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/stream.c -------------------------------------------------------------------------------- /src/lib/trace-ir/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/stream.h -------------------------------------------------------------------------------- /src/lib/trace-ir/trace-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/trace-class.c -------------------------------------------------------------------------------- /src/lib/trace-ir/trace-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/trace-class.h -------------------------------------------------------------------------------- /src/lib/trace-ir/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/trace.c -------------------------------------------------------------------------------- /src/lib/trace-ir/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/trace.h -------------------------------------------------------------------------------- /src/lib/trace-ir/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/utils.c -------------------------------------------------------------------------------- /src/lib/trace-ir/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/trace-ir/utils.h -------------------------------------------------------------------------------- /src/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/util.c -------------------------------------------------------------------------------- /src/lib/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/value.c -------------------------------------------------------------------------------- /src/lib/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/lib/value.h -------------------------------------------------------------------------------- /src/logging/comp-logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/logging/comp-logging.h -------------------------------------------------------------------------------- /src/logging/log-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/logging/log-api.c -------------------------------------------------------------------------------- /src/logging/log-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/logging/log-api.h -------------------------------------------------------------------------------- /src/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/logging/log.h -------------------------------------------------------------------------------- /src/param-parse/param-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/param-parse/param-parse.c -------------------------------------------------------------------------------- /src/param-parse/param-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/param-parse/param-parse.h -------------------------------------------------------------------------------- /src/plugins/common/muxing/muxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/common/muxing/muxing.cpp -------------------------------------------------------------------------------- /src/plugins/common/muxing/muxing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/common/muxing/muxing.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/metadata/ctf-ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/metadata/ctf-ir.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/metadata/ctf-ir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/metadata/ctf-ir.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/metadata/int-range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/metadata/int-range.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/clk-cls-cfg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/clk-cls-cfg.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/item-seq/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/item-seq/item.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/item-seq/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/item-seq/item.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/item-seq/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/item-seq/medium.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/item-seq/medium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/item-seq/medium.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/metadata/ctf-ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/metadata/ctf-ir.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/metadata/ctf-ir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/metadata/ctf-ir.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/msg-iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/msg-iter.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/msg-iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/msg-iter.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/null-cp-finder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/null-cp-finder.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/pkt-props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/pkt-props.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/common/src/pkt-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/common/src/pkt-props.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink-stream.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink-stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink-stream.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink-trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink-trace.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink-trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink-trace.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-sink/fs-sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-sink/fs-sink.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/data-stream-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/data-stream-file.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/data-stream-file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/data-stream-file.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/file.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/file.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/fs.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/fs.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/lttng-index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/lttng-index.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/metadata.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/query.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/fs-src/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/fs-src/query.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/data-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/data-stream.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/data-stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/data-stream.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/lttng-live.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/lttng-live.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/lttng-live.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/lttng-live.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/metadata.cpp -------------------------------------------------------------------------------- /src/plugins/ctf/lttng-live/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/lttng-live/metadata.hpp -------------------------------------------------------------------------------- /src/plugins/ctf/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/ctf/plugin.cpp -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/crc32.c -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/crc32.h -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/dwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/dwarf.cpp -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/dwarf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/dwarf.hpp -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/utils.cpp -------------------------------------------------------------------------------- /src/plugins/lttng-utils/debug-info/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/debug-info/utils.hpp -------------------------------------------------------------------------------- /src/plugins/lttng-utils/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/lttng-utils/plugin.cpp -------------------------------------------------------------------------------- /src/plugins/text/details/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/colors.h -------------------------------------------------------------------------------- /src/plugins/text/details/details.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/details.c -------------------------------------------------------------------------------- /src/plugins/text/details/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/details.h -------------------------------------------------------------------------------- /src/plugins/text/details/obj-lifetime-mgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/obj-lifetime-mgmt.c -------------------------------------------------------------------------------- /src/plugins/text/details/obj-lifetime-mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/obj-lifetime-mgmt.h -------------------------------------------------------------------------------- /src/plugins/text/details/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/write.c -------------------------------------------------------------------------------- /src/plugins/text/details/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/details/write.h -------------------------------------------------------------------------------- /src/plugins/text/dmesg/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/dmesg/dmesg.c -------------------------------------------------------------------------------- /src/plugins/text/dmesg/dmesg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/dmesg/dmesg.h -------------------------------------------------------------------------------- /src/plugins/text/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/plugin.c -------------------------------------------------------------------------------- /src/plugins/text/pretty/pretty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/pretty/pretty.c -------------------------------------------------------------------------------- /src/plugins/text/pretty/pretty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/pretty/pretty.h -------------------------------------------------------------------------------- /src/plugins/text/pretty/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/text/pretty/print.c -------------------------------------------------------------------------------- /src/plugins/utils/counter/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/counter/counter.c -------------------------------------------------------------------------------- /src/plugins/utils/counter/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/counter/counter.h -------------------------------------------------------------------------------- /src/plugins/utils/dummy/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/dummy/dummy.c -------------------------------------------------------------------------------- /src/plugins/utils/dummy/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/dummy/dummy.h -------------------------------------------------------------------------------- /src/plugins/utils/muxer/comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/comp.cpp -------------------------------------------------------------------------------- /src/plugins/utils/muxer/comp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/comp.hpp -------------------------------------------------------------------------------- /src/plugins/utils/muxer/msg-iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/msg-iter.cpp -------------------------------------------------------------------------------- /src/plugins/utils/muxer/msg-iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/msg-iter.hpp -------------------------------------------------------------------------------- /src/plugins/utils/muxer/upstream-msg-iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/upstream-msg-iter.cpp -------------------------------------------------------------------------------- /src/plugins/utils/muxer/upstream-msg-iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/muxer/upstream-msg-iter.hpp -------------------------------------------------------------------------------- /src/plugins/utils/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/plugin.cpp -------------------------------------------------------------------------------- /src/plugins/utils/trimmer/trimmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/trimmer/trimmer.c -------------------------------------------------------------------------------- /src/plugins/utils/trimmer/trimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/plugins/utils/trimmer/trimmer.h -------------------------------------------------------------------------------- /src/py-common/py-common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/py-common/py-common.cpp -------------------------------------------------------------------------------- /src/py-common/py-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/py-common/py-common.h -------------------------------------------------------------------------------- /src/py-common/py-common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/py-common/py-common.hpp -------------------------------------------------------------------------------- /src/string-format/format-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/string-format/format-error.c -------------------------------------------------------------------------------- /src/string-format/format-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/src/string-format/format-error.h -------------------------------------------------------------------------------- /std-ext-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/std-ext-lib.md -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/bindings/python/bt2/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/.coveragerc -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test-python-bt2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test-python-bt2.sh -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_clock_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_clock_class.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_component.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_connection.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_error.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_event.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_event_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_event_class.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_field.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_field_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_field_class.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_graph.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_interrupter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_interrupter.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_message.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_mip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_mip.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_mip1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_mip1.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_package.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_packet.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_plugin.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_port.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_stream.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_stream_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_stream_class.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_trace.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_trace_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_trace_class.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/test_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/test_value.py -------------------------------------------------------------------------------- /tests/bindings/python/bt2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bindings/python/bt2/utils.py -------------------------------------------------------------------------------- /tests/bitfield/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bitfield/Makefile.am -------------------------------------------------------------------------------- /tests/bitfield/test-bitfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/bitfield/test-bitfield.c -------------------------------------------------------------------------------- /tests/cli/convert/test-convert-args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/convert/test-convert-args.sh -------------------------------------------------------------------------------- /tests/cli/list-plugins/test-list-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/list-plugins/test-list-plugins.sh -------------------------------------------------------------------------------- /tests/cli/params/test-params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/params/test-params.sh -------------------------------------------------------------------------------- /tests/cli/query/test-query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/query/test-query.sh -------------------------------------------------------------------------------- /tests/cli/test-exit-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-exit-status.sh -------------------------------------------------------------------------------- /tests/cli/test-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-help.sh -------------------------------------------------------------------------------- /tests/cli/test-intersection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-intersection.sh -------------------------------------------------------------------------------- /tests/cli/test-output-ctf-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-output-ctf-metadata.sh -------------------------------------------------------------------------------- /tests/cli/test-packet-seq-num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-packet-seq-num.sh -------------------------------------------------------------------------------- /tests/cli/test-trace-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-trace-copy.sh -------------------------------------------------------------------------------- /tests/cli/test-trace-read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-trace-read.sh -------------------------------------------------------------------------------- /tests/cli/test-trimmer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cli/test-trimmer.sh -------------------------------------------------------------------------------- /tests/cpp-common/test-c-string-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cpp-common/test-c-string-view.cpp -------------------------------------------------------------------------------- /tests/cpp-common/test-unicode-conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cpp-common/test-unicode-conv.cpp -------------------------------------------------------------------------------- /tests/cpp-common/test-uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/cpp-common/test-uuid.cpp -------------------------------------------------------------------------------- /tests/ctf-writer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/ctf-writer/Makefile.am -------------------------------------------------------------------------------- /tests/ctf-writer/ctf-writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/ctf-writer/ctf-writer.c -------------------------------------------------------------------------------- /tests/ctf-writer/test-ctf-writer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/ctf-writer/test-ctf-writer.sh -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/aaa1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/aaa2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/aaa3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/bbb1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/bbb2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/ccc1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/ccc2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/ccc3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/ccc4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/grouping/traces/some-dir/aaa10: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/params-log-level/dir-a/aaa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/params-log-level/dir-ab/aaa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/params-log-level/dir-ab/bbb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/auto-source-discovery/params-log-level/dir-b/bbb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/cli/params/bt_plugin_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/cli/params/bt_plugin_params.py -------------------------------------------------------------------------------- /tests/data/cli/query/bt_plugin_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/cli/query/bt_plugin_query.py -------------------------------------------------------------------------------- /tests/data/cli/test-output-ctf-metadata.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/cli/test-output-ctf-metadata.ref -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/deterministic-ordering/b-not-corrupted/dummystream: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/fail/fail1/dummystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/ctf-traces/1/fail/fail1/dummystream -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/fail/fail1/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/ctf-traces/1/fail/fail1/metadata -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/fail/fail2/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/ctf-traces/1/fail/fail2/metadata -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/fail/incomplete-packet-header/stream: -------------------------------------------------------------------------------- 1 | Ppommemis -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/array-align-elem/stream: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/def-clk-freq/stream: -------------------------------------------------------------------------------- 1 | 2 | 88 3 | *88* -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-ctx-sequence/stream: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-variant-no-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-variant-one-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-variant-reserved-keywords/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-variant-same-with-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/meta-variant-two-underscores/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/session-rotation/a/2/ust/pid/10352/chan_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/session-rotation/a/2/ust/pid/10353/chan_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/session-rotation/a/2/ust/pid/10353/chan_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/1/succeed/struct-array-align-elem/stream: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/fail/empty-event-record/stream: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/array-align-elem/stream: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/fl-bm/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/ctf-traces/2/succeed/fl-bm/metadata -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/fl-bm/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/data/ctf-traces/2/succeed/fl-bm/stream -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-ctx-sequence/stream: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-variant-no-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-variant-one-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-variant-reserved-keywords/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-variant-same-with-underscore/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/meta-variant-two-underscores/stream: -------------------------------------------------------------------------------- 1 | Daniel Lavoie -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/session-rotation/a/2/ust/pid/10352/chan_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/session-rotation/a/2/ust/pid/10353/chan_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/session-rotation/a/2/ust/pid/10353/chan_3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ctf-traces/2/succeed/struct-array-align-elem/stream: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/data/plugins/sink.text.details/succeed/default-without-data-without-metadata.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/plugins/src.ctf.fs/succeed/trace-meta-clk-cls-before-trace-cls.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/plugins/src.ctf.fs/succeed/trace-meta-ctx-sequence.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/Makefile.am -------------------------------------------------------------------------------- /tests/lib/conds/conds-triggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/conds/conds-triggers.cpp -------------------------------------------------------------------------------- /tests/lib/conds/test-conds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/conds/test-conds.sh -------------------------------------------------------------------------------- /tests/lib/conds/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/conds/test.py -------------------------------------------------------------------------------- /tests/lib/conds/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/conds/utils.cpp -------------------------------------------------------------------------------- /tests/lib/conds/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/conds/utils.hpp -------------------------------------------------------------------------------- /tests/lib/test-bt-uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-bt-uuid.c -------------------------------------------------------------------------------- /tests/lib/test-bt-values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-bt-values.c -------------------------------------------------------------------------------- /tests/lib/test-fields-bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-fields-bin.cpp -------------------------------------------------------------------------------- /tests/lib/test-fields.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-fields.sh -------------------------------------------------------------------------------- /tests/lib/test-graph-topo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-graph-topo.c -------------------------------------------------------------------------------- /tests/lib/test-mip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-mip.c -------------------------------------------------------------------------------- /tests/lib/test-plugin-init-fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugin-init-fail.cpp -------------------------------------------------------------------------------- /tests/lib/test-plugin-init-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugin-init-fail.sh -------------------------------------------------------------------------------- /tests/lib/test-plugins-plugins/minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugins-plugins/minimal.c -------------------------------------------------------------------------------- /tests/lib/test-plugins-plugins/sfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugins-plugins/sfs.c -------------------------------------------------------------------------------- /tests/lib/test-plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugins.cpp -------------------------------------------------------------------------------- /tests/lib/test-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-plugins.sh -------------------------------------------------------------------------------- /tests/lib/test-simple-sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-simple-sink.c -------------------------------------------------------------------------------- /tests/lib/test-trace-ir-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/test-trace-ir-ref.c -------------------------------------------------------------------------------- /tests/lib/utils/run-in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/utils/run-in.cpp -------------------------------------------------------------------------------- /tests/lib/utils/run-in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/lib/utils/run-in.hpp -------------------------------------------------------------------------------- /tests/param-validation/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/param-validation/Makefile.am -------------------------------------------------------------------------------- /tests/param-validation/test-param-validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/param-validation/test-param-validation.c -------------------------------------------------------------------------------- /tests/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/flt.utils.muxer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/flt.utils.muxer/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/flt.utils.trimmer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/flt.utils.trimmer/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/sink.ctf.fs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.ctf.fs/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/sink.ctf.fs/succeed/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.ctf.fs/succeed/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/sink.ctf.fs/test-stream-names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.ctf.fs/test-stream-names.sh -------------------------------------------------------------------------------- /tests/plugins/sink.text.pretty/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.text.pretty/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/sink.text.pretty/test-enum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.text.pretty/test-enum.sh -------------------------------------------------------------------------------- /tests/plugins/sink.text.pretty/test-pretty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.text.pretty/test-pretty.sh -------------------------------------------------------------------------------- /tests/plugins/sink.text.pretty/test_pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/sink.text.pretty/test_pretty.py -------------------------------------------------------------------------------- /tests/plugins/src.ctf.fs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.fs/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/src.ctf.fs/fail/test-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.fs/fail/test-fail.sh -------------------------------------------------------------------------------- /tests/plugins/src.ctf.fs/field/test-field.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.fs/field/test-field.sh -------------------------------------------------------------------------------- /tests/plugins/src.ctf.fs/succeed/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.fs/succeed/Makefile.am -------------------------------------------------------------------------------- /tests/plugins/src.ctf.lttng-live/test-live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.lttng-live/test-live.sh -------------------------------------------------------------------------------- /tests/plugins/src.ctf.lttng-live/test-query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.lttng-live/test-query.sh -------------------------------------------------------------------------------- /tests/plugins/src.ctf.lttng-live/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/plugins/src.ctf.lttng-live/test_query.py -------------------------------------------------------------------------------- /tests/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/Makefile.am -------------------------------------------------------------------------------- /tests/utils/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/common.c -------------------------------------------------------------------------------- /tests/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/common.h -------------------------------------------------------------------------------- /tests/utils/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/common.hpp -------------------------------------------------------------------------------- /tests/utils/env.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/env.sh.in -------------------------------------------------------------------------------- /tests/utils/python/bt_plugin_trace_ir_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/bt_plugin_trace_ir_test.py -------------------------------------------------------------------------------- /tests/utils/python/cli_params_to_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/cli_params_to_string.py -------------------------------------------------------------------------------- /tests/utils/python/mctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/mctf.py -------------------------------------------------------------------------------- /tests/utils/python/moultipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/moultipart.py -------------------------------------------------------------------------------- /tests/utils/python/normand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/normand.py -------------------------------------------------------------------------------- /tests/utils/python/split_sort_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/split_sort_compare.py -------------------------------------------------------------------------------- /tests/utils/python/tap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/__init__.py -------------------------------------------------------------------------------- /tests/utils/python/tap/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/__main__.py -------------------------------------------------------------------------------- /tests/utils/python/tap/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/adapter.py -------------------------------------------------------------------------------- /tests/utils/python/tap/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/directive.py -------------------------------------------------------------------------------- /tests/utils/python/tap/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/formatter.py -------------------------------------------------------------------------------- /tests/utils/python/tap/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/line.py -------------------------------------------------------------------------------- /tests/utils/python/tap/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/loader.py -------------------------------------------------------------------------------- /tests/utils/python/tap/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/main.py -------------------------------------------------------------------------------- /tests/utils/python/tap/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/parser.py -------------------------------------------------------------------------------- /tests/utils/python/tap/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/rules.py -------------------------------------------------------------------------------- /tests/utils/python/tap/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/runner.py -------------------------------------------------------------------------------- /tests/utils/python/tap/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tap/tracker.py -------------------------------------------------------------------------------- /tests/utils/python/test_all_ctf_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/test_all_ctf_versions.py -------------------------------------------------------------------------------- /tests/utils/python/test_all_mip_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/test_all_mip_versions.py -------------------------------------------------------------------------------- /tests/utils/python/testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/testrunner.py -------------------------------------------------------------------------------- /tests/utils/python/tjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/tjson.py -------------------------------------------------------------------------------- /tests/utils/python/typing/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/typing/typing.py -------------------------------------------------------------------------------- /tests/utils/python/typing/typing.py.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/python/typing/typing.py.license -------------------------------------------------------------------------------- /tests/utils/run-in-py-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/run-in-py-env.sh -------------------------------------------------------------------------------- /tests/utils/tap-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/tap-driver.sh -------------------------------------------------------------------------------- /tests/utils/tap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/tap/Makefile.am -------------------------------------------------------------------------------- /tests/utils/tap/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/tap/tap.c -------------------------------------------------------------------------------- /tests/utils/tap/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/tap/tap.h -------------------------------------------------------------------------------- /tests/utils/tap/tap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/tap/tap.sh -------------------------------------------------------------------------------- /tests/utils/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tests/utils/utils.sh -------------------------------------------------------------------------------- /tools/check-include-guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tools/check-include-guard.py -------------------------------------------------------------------------------- /tools/check-include-guards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tools/check-include-guards.sh -------------------------------------------------------------------------------- /tools/format-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tools/format-cpp.sh -------------------------------------------------------------------------------- /tools/lint-py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tools/lint-py.sh -------------------------------------------------------------------------------- /tools/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/tools/shellcheck.sh -------------------------------------------------------------------------------- /version/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/version/README.adoc -------------------------------------------------------------------------------- /version/extra_patches/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efficios/babeltrace/HEAD/version/extra_patches/README.adoc --------------------------------------------------------------------------------