Home
last modified time | relevance | path

Searched refs:InodeFileDataSource (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/src/traced/probes/filesystem/
Dinode_file_data_source.cc83 const ProbesDataSource::Descriptor InodeFileDataSource::descriptor = {
97 void InodeFileDataSource::FillInodeEntry(InodeFileMap* destination, in FillInodeEntry()
108 InodeFileDataSource::InodeFileDataSource( in InodeFileDataSource() function in perfetto::InodeFileDataSource
140 InodeFileDataSource::~InodeFileDataSource() = default;
142 void InodeFileDataSource::Start() { in Start()
147 void InodeFileDataSource::AddInodesFromStaticMap( in AddInodesFromStaticMap()
173 void InodeFileDataSource::AddInodesFromLRUCache( in AddInodesFromLRUCache()
193 void InodeFileDataSource::Flush(FlushRequestID, in Flush()
199 void InodeFileDataSource::OnInodes( in OnInodes()
268 InodeFileMap* InodeFileDataSource::AddToCurrentTracePacket( in AddToCurrentTracePacket()
[all …]
Dinode_file_data_source.h53 class InodeFileDataSource : public ProbesDataSource,
58 InodeFileDataSource(
67 ~InodeFileDataSource() override;
69 base::WeakPtr<InodeFileDataSource> GetWeakPtr() const;
131 base::WeakPtrFactory<InodeFileDataSource> weak_factory_; // Keep last.
Dinode_file_data_source_unittest.cc39 class TestInodeFileDataSource : public InodeFileDataSource {
49 : InodeFileDataSource(std::move(cfg), in TestInodeFileDataSource()
/external/perfetto/src/traced/probes/
Dprobes_producer.cc71 &InodeFileDataSource::descriptor, //
166 } else if (config.name() == InodeFileDataSource::descriptor.name) { in SetupDataSource()
263 return std::unique_ptr<InodeFileDataSource>(new InodeFileDataSource( in CreateInodeFileDataSource()
461 InodeFileDataSource* inode_data_source = nullptr; in OnFtraceDataWrittenIntoDataSourceBuffers()
496 } else if (ds->descriptor == &InodeFileDataSource::descriptor) { in OnFtraceDataWrittenIntoDataSourceBuffers()
497 inode_data_source = static_cast<InodeFileDataSource*>(ds); in OnFtraceDataWrittenIntoDataSourceBuffers()
/external/perfetto/src/traced/probes/ftrace/
Dftrace_data_source.h41 class InodeFileDataSource; variable