1 /* 2 * Copyright (C) 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include "src/trace_processor/tables/android_tables_py.h" 18 #include "src/trace_processor/tables/counter_tables_py.h" 19 #include "src/trace_processor/tables/flow_tables_py.h" 20 #include "src/trace_processor/tables/memory_tables_py.h" 21 #include "src/trace_processor/tables/metadata_tables_py.h" 22 #include "src/trace_processor/tables/profiler_tables_py.h" 23 #include "src/trace_processor/tables/slice_tables_py.h" 24 #include "src/trace_processor/tables/trace_proto_tables_py.h" 25 #include "src/trace_processor/tables/track_tables_py.h" 26 27 namespace perfetto { 28 namespace trace_processor { 29 namespace macros_internal { 30 // macros_internal.h 31 MacroTable::~MacroTable() = default; 32 } // namespace macros_internal 33 34 namespace tables { 35 // android_tables_py.h 36 AndroidDumpstateTable::~AndroidDumpstateTable() = default; 37 AndroidGameInterventionListTable::~AndroidGameInterventionListTable() = default; 38 AndroidLogTable::~AndroidLogTable() = default; 39 40 // counter_tables_py.h 41 CounterTable::~CounterTable() = default; 42 43 // metadata_tables_py.h 44 RawTable::~RawTable() = default; 45 FtraceEventTable::~FtraceEventTable() = default; 46 ArgTable::~ArgTable() = default; 47 ExpMissingChromeProcTable::~ExpMissingChromeProcTable() = default; 48 MetadataTable::~MetadataTable() = default; 49 CpuTable::~CpuTable() = default; 50 CpuFreqTable::~CpuFreqTable() = default; 51 ThreadTable::~ThreadTable() = default; 52 ProcessTable::~ProcessTable() = default; 53 FiledescriptorTable::~FiledescriptorTable() = default; 54 ClockSnapshotTable::~ClockSnapshotTable() = default; 55 56 // profiler_tables_py.h 57 StackProfileMappingTable::~StackProfileMappingTable() = default; 58 StackProfileFrameTable::~StackProfileFrameTable() = default; 59 StackProfileCallsiteTable::~StackProfileCallsiteTable() = default; 60 StackSampleTable::~StackSampleTable() = default; 61 CpuProfileStackSampleTable::~CpuProfileStackSampleTable() = default; 62 PerfSampleTable::~PerfSampleTable() = default; 63 SymbolTable::~SymbolTable() = default; 64 HeapProfileAllocationTable::~HeapProfileAllocationTable() = default; 65 ExperimentalFlamegraphNodesTable::~ExperimentalFlamegraphNodesTable() = default; 66 HeapGraphObjectTable::~HeapGraphObjectTable() = default; 67 HeapGraphClassTable::~HeapGraphClassTable() = default; 68 HeapGraphReferenceTable::~HeapGraphReferenceTable() = default; 69 VulkanMemoryAllocationsTable::~VulkanMemoryAllocationsTable() = default; 70 PackageListTable::~PackageListTable() = default; 71 ProfilerSmapsTable::~ProfilerSmapsTable() = default; 72 GpuCounterGroupTable::~GpuCounterGroupTable() = default; 73 74 // slice_tables_py.h 75 SliceTable::~SliceTable() = default; 76 FlowTable::~FlowTable() = default; 77 SchedSliceTable::~SchedSliceTable() = default; 78 GpuSliceTable::~GpuSliceTable() = default; 79 GraphicsFrameSliceTable::~GraphicsFrameSliceTable() = default; 80 ThreadStateTable::~ThreadStateTable() = default; 81 ExpectedFrameTimelineSliceTable::~ExpectedFrameTimelineSliceTable() = default; 82 ActualFrameTimelineSliceTable::~ActualFrameTimelineSliceTable() = default; 83 ExperimentalFlatSliceTable::~ExperimentalFlatSliceTable() = default; 84 85 // track_tables_py.h 86 TrackTable::~TrackTable() = default; 87 ProcessTrackTable::~ProcessTrackTable() = default; 88 ThreadTrackTable::~ThreadTrackTable() = default; 89 CpuTrackTable::~CpuTrackTable() = default; 90 GpuTrackTable::~GpuTrackTable() = default; 91 CounterTrackTable::~CounterTrackTable() = default; 92 ThreadCounterTrackTable::~ThreadCounterTrackTable() = default; 93 ProcessCounterTrackTable::~ProcessCounterTrackTable() = default; 94 CpuCounterTrackTable::~CpuCounterTrackTable() = default; 95 IrqCounterTrackTable::~IrqCounterTrackTable() = default; 96 SoftirqCounterTrackTable::~SoftirqCounterTrackTable() = default; 97 GpuCounterTrackTable::~GpuCounterTrackTable() = default; 98 PerfCounterTrackTable::~PerfCounterTrackTable() = default; 99 EnergyCounterTrackTable::~EnergyCounterTrackTable() = default; 100 UidCounterTrackTable::~UidCounterTrackTable() = default; 101 EnergyPerUidCounterTrackTable::~EnergyPerUidCounterTrackTable() = default; 102 103 // trace_proto_tables_py.h 104 ExperimentalProtoPathTable::~ExperimentalProtoPathTable() = default; 105 ExperimentalProtoContentTable::~ExperimentalProtoContentTable() = default; 106 107 // memory_tables_py.h 108 MemorySnapshotTable::~MemorySnapshotTable() = default; 109 ProcessMemorySnapshotTable::~ProcessMemorySnapshotTable() = default; 110 MemorySnapshotNodeTable::~MemorySnapshotNodeTable() = default; 111 MemorySnapshotEdgeTable::~MemorySnapshotEdgeTable() = default; 112 113 } // namespace tables 114 115 } // namespace trace_processor 116 } // namespace perfetto 117