Searched refs:TraceProcessorImpl (Results 1 – 6 of 6) sorted by relevance
35 class TraceProcessorImpl; variable39 IteratorImpl(TraceProcessorImpl* impl,113 static int DummyClose(TraceProcessorImpl*) { return 0; } in DummyClose() argument122 base::ScopedResource<TraceProcessorImpl*, &DummyClose, nullptr>;
689 TraceProcessorImpl::TraceProcessorImpl(const Config& cfg) in TraceProcessorImpl() function in perfetto::trace_processor::TraceProcessorImpl836 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 …]
44 class TraceProcessorImpl : public TraceProcessor,47 explicit TraceProcessorImpl(const Config&);49 ~TraceProcessorImpl() override;
28 return std::unique_ptr<TraceProcessor>(new TraceProcessorImpl(config)); in CreateInstance()
27 IteratorImpl::IteratorImpl(TraceProcessorImpl* trace_processor, in IteratorImpl()
39 2. Register the table with the trace processor in the constructor for the [TraceProcessorImpl class…