Home
last modified time | relevance | path

Searched refs:TraceProcessorImpl (Results 1 – 6 of 6) sorted by relevance

/external/perfetto/src/trace_processor/
Diterator_impl.h35 class TraceProcessorImpl; variable
39 IteratorImpl(TraceProcessorImpl* impl,
113 static int DummyClose(TraceProcessorImpl*) { return 0; } in DummyClose() argument
122 base::ScopedResource<TraceProcessorImpl*, &DummyClose, nullptr>;
Dtrace_processor_impl.cc689 TraceProcessorImpl::TraceProcessorImpl(const Config& cfg) in TraceProcessorImpl() function in perfetto::trace_processor::TraceProcessorImpl
836 TraceProcessorImpl::~TraceProcessorImpl() = default;
838 util::Status TraceProcessorImpl::Parse(std::unique_ptr<uint8_t[]> data, in Parse()
844 std::string TraceProcessorImpl::GetCurrentTraceName() { in GetCurrentTraceName()
851 void TraceProcessorImpl::SetCurrentTraceName(const std::string& name) { in SetCurrentTraceName()
855 void TraceProcessorImpl::NotifyEndOfFile() { in NotifyEndOfFile()
879 size_t TraceProcessorImpl::RestoreInitialTables() { in RestoreInitialTables()
908 Iterator TraceProcessorImpl::ExecuteQuery(const std::string& sql, in ExecuteQuery()
936 void TraceProcessorImpl::InterruptQuery() { in InterruptQuery()
943 bool TraceProcessorImpl::IsRootMetricField(const std::string& metric_name) { in IsRootMetricField()
[all …]
Dtrace_processor_impl.h44 class TraceProcessorImpl : public TraceProcessor,
47 explicit TraceProcessorImpl(const Config&);
49 ~TraceProcessorImpl() override;
Dtrace_processor.cc28 return std::unique_ptr<TraceProcessor>(new TraceProcessorImpl(config)); in CreateInstance()
Diterator_impl.cc27 IteratorImpl::IteratorImpl(TraceProcessorImpl* trace_processor, in IteratorImpl()
/external/perfetto/docs/contributing/
Dcommon-tasks.md39 2. Register the table with the trace processor in the constructor for the [TraceProcessorImpl class…