btf: Initial Best Trace Format commit
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 2 May 2014 18:17:22 +0000 (14:17 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Tue, 17 Jun 2014 16:52:00 +0000 (12:52 -0400)
commitff71e543859bc25fdde975f21dcda3edd1a0e5d6
treecbe0219058ff66272ec68353e6eeeb8d2621d2da
parent37e037a1d6a6df2a255766bc32d587b8c4c38d16
btf: Initial Best Trace Format commit

The BTF trace format was defined by Timing Architects for the
Eclipse Automotive IWG.

The specification is available here:
http://wiki.eclipse.org/File:TA_BTF_Specification_2.1.3_Eclipse_Auto_IWG.pdf

Change-Id: I4726279d528d558507d06d2b0e8fd3f0149c810b
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Reviewed-on: https://git.eclipse.org/r/25892
Tested-by: Hudson CI
68 files changed:
org.eclipse.linuxtools.btf.core.tests/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.project [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.pde.api.tools.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/about.html [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/src/org/eclipse/linuxtools/btf/core/tests/AllTests.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/src/org/eclipse/linuxtools/btf/core/tests/BtfTestPlugin.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/src/org/eclipse/linuxtools/btf/core/tests/trace/BtfTraceTest.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/src/org/eclipse/linuxtools/btf/core/tests/utils/BtfTestTrace.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/src/org/eclipse/linuxtools/btf/core/tests/utils/TestBtfTrace.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core.tests/testfiles/20140219-123819.btf [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.project [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.pde.api.tools.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/about.html [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/plugin.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/Activator.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/Messages.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/analysis/BtfAnalysisModule.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/analysis/BtfStateProvider.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/event/BTFPayload.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/event/BtfEvent.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/event/BtfEventType.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/messages.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/trace/BtfColumnNames.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/trace/BtfEventTypeFactory.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/trace/BtfTimstampFormat.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.core/src/org/eclipse/linuxtools/btf/core/trace/BtfTrace.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.classpath [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.project [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.core.resources.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.core.runtime.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.jdt.ui.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.pde.api.tools.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/.settings/org.eclipse.pde.prefs [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/about.html [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/btf-view.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/build.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/icons/btf.png [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/plugin.properties [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/plugin.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/pom.xml [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/src/org/eclipse/linuxtools/btf/ui/Activator.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/src/org/eclipse/linuxtools/btf/ui/BtfEventAdapterFactory.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/src/org/eclipse/linuxtools/btf/ui/BtfEventPropertySource.java [new file with mode: 0644]
org.eclipse.linuxtools.btf.ui/src/org/eclipse/linuxtools/btf/ui/BtfEventViewer.java [new file with mode: 0644]
org.eclipse.linuxtools.lttng.alltests/META-INF/MANIFEST.MF
org.eclipse.linuxtools.lttng.alltests/src/org/eclipse/linuxtools/lttng/alltests/RunAllTests.java
pom.xml
This page took 0.028019 seconds and 5 git commands to generate.