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.cc235 HeapProfileTracker::HeapProfileTracker(TraceProcessorContext* context) in HeapProfileTracker() function in perfetto::trace_processor::HeapProfileTracker
238 HeapProfileTracker::~HeapProfileTracker() = default;
240 void HeapProfileTracker::SetProfilePacketIndex(uint32_t seq_id, in SetProfilePacketIndex()
266 void HeapProfileTracker::AddAllocation( in AddAllocation()
376 void HeapProfileTracker::StoreAllocation(uint32_t seq_id, in StoreAllocation()
382 void HeapProfileTracker::CommitAllocations( in CommitAllocations()
392 void HeapProfileTracker::FinalizeProfile( in FinalizeProfile()
400 void HeapProfileTracker::NotifyEndOfFile() { in NotifyEndOfFile()
Dheap_profile_tracker.h35 class HeapProfileTracker {
52 explicit HeapProfileTracker(TraceProcessorContext* context);
73 ~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()
Dproto_trace_parser.cc352 HeapProfileTracker::SourceAllocation src_allocation; in ParseProfilePacket()
/external/perfetto/src/trace_processor/types/
Dtrace_processor_context.h40 class HeapProfileTracker; variable
79 std::unique_ptr<HeapProfileTracker> heap_profile_tracker;
/external/perfetto/src/trace_processor/
Dtrace_processor_storage_impl.cc57 context_.heap_profile_tracker.reset(new HeapProfileTracker(&context_)); in TraceProcessorStorageImpl()