Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/importers/proto/
Dheap_profile_tracker.cc29 HeapProfileTracker::HeapProfileTracker(TraceProcessorContext* context) in HeapProfileTracker() function in perfetto::trace_processor::HeapProfileTracker
34 HeapProfileTracker::~HeapProfileTracker() = default;
36 void HeapProfileTracker::SetProfilePacketIndex(uint32_t seq_id, in SetProfilePacketIndex()
62 void HeapProfileTracker::AddAllocation( in AddAllocation()
177 void HeapProfileTracker::StoreAllocation(uint32_t seq_id, in StoreAllocation()
183 void HeapProfileTracker::CommitAllocations( in CommitAllocations()
193 void HeapProfileTracker::FinalizeProfile( in FinalizeProfile()
201 void HeapProfileTracker::NotifyEndOfFile() { in NotifyEndOfFile()
Dheap_profile_tracker.h32 class HeapProfileTracker {
49 explicit HeapProfileTracker(TraceProcessorContext* context);
70 ~HeapProfileTracker();
Dheap_profile_tracker_unittest.cc62 context.heap_profile_tracker.reset(new HeapProfileTracker(&context)); in HeapProfileTrackerDupTest()
202 context.heap_profile_tracker.reset(new HeapProfileTracker(&context)); in TEST()
204 HeapProfileTracker* hpt = context.heap_profile_tracker.get(); in TEST()
237 context.heap_profile_tracker.reset(new HeapProfileTracker(&context)); in TEST()
239 HeapProfileTracker* hpt = context.heap_profile_tracker.get(); in TEST()
Dprofile_module.cc409 HeapProfileTracker::SourceAllocation src_allocation; in ParseProfilePacket()
/external/perfetto/src/trace_processor/types/
Dtrace_processor_context.h55 class HeapProfileTracker; variable
102 std::unique_ptr<HeapProfileTracker> heap_profile_tracker;
/external/perfetto/src/trace_processor/
Dtrace_processor_storage_impl.cc66 context_.heap_profile_tracker.reset(new HeapProfileTracker(&context_)); in TraceProcessorStorageImpl()