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.cc91 constexpr int InodeFileDataSource::kTypeId;
102 void InodeFileDataSource::FillInodeEntry(InodeFileMap* destination, in FillInodeEntry()
112 InodeFileDataSource::InodeFileDataSource( in InodeFileDataSource() function in perfetto::InodeFileDataSource
132 InodeFileDataSource::~InodeFileDataSource() = default;
134 void InodeFileDataSource::Start() { in Start()
139 void InodeFileDataSource::AddInodesFromStaticMap( in AddInodesFromStaticMap()
165 void InodeFileDataSource::AddInodesFromLRUCache( in AddInodesFromLRUCache()
185 void InodeFileDataSource::Flush(FlushRequestID, in Flush()
191 void InodeFileDataSource::OnInodes( in OnInodes()
260 InodeFileMap* InodeFileDataSource::AddToCurrentTracePacket( in AddToCurrentTracePacket()
[all …]
Dinode_file_data_source.h52 class InodeFileDataSource : public ProbesDataSource,
57 InodeFileDataSource(
66 ~InodeFileDataSource() override;
68 base::WeakPtr<InodeFileDataSource> GetWeakPtr() const;
132 base::WeakPtrFactory<InodeFileDataSource> weak_factory_; // Keep last.
Dinode_file_data_source_unittest.cc36 class TestInodeFileDataSource : public InodeFileDataSource {
46 : InodeFileDataSource(std::move(cfg), in TestInodeFileDataSource()
/external/perfetto/src/traced/probes/
Dprobes_producer.cc264 return std::unique_ptr<InodeFileDataSource>(new InodeFileDataSource( in CreateInodeFileDataSource()
420 InodeFileDataSource* inode_data_source = nullptr; in OnFtraceDataWrittenIntoDataSourceBuffers()
456 case InodeFileDataSource::kTypeId: in OnFtraceDataWrittenIntoDataSourceBuffers()
457 inode_data_source = static_cast<InodeFileDataSource*>(ds); in OnFtraceDataWrittenIntoDataSourceBuffers()
/external/perfetto/src/traced/probes/ftrace/
Dftrace_data_source.h42 class InodeFileDataSource; variable