Home
last modified time | relevance | path

Searched refs:sample_tree (Results 1 – 3 of 3) sorted by relevance

/system/extras/simpleperf/
Dcmd_report.cpp130 SampleTree sample_tree; in GetSampleTree() local
131 sample_tree.samples = GetSamples(); in GetSampleTree()
132 sample_tree.total_samples = total_samples_; in GetSampleTree()
133 sample_tree.total_period = total_period_; in GetSampleTree()
134 return sample_tree; in GetSampleTree()
797 SampleTree& sample_tree = sample_tree_[i]; in PrintReport() local
800 fprintf(report_fp, "Samples: %" PRIu64 "\n", sample_tree.total_samples); in PrintReport()
801 fprintf(report_fp, "Event count: %" PRIu64 "\n\n", sample_tree.total_period); in PrintReport()
802 sample_tree_displayer_->DisplaySamples(report_fp, sample_tree.samples, &sample_tree); in PrintReport()
Dcmd_kmem.cpp126 SlabSampleTree sample_tree; in GetSampleTree() local
127 sample_tree.samples = GetSamples(); in GetSampleTree()
128 sample_tree.total_requested_bytes = total_requested_bytes_; in GetSampleTree()
129 sample_tree.total_allocated_bytes = total_allocated_bytes_; in GetSampleTree()
130 sample_tree.nr_allocations = nr_allocations_; in GetSampleTree()
131 sample_tree.nr_frees = nr_frees_; in GetSampleTree()
132 sample_tree.nr_cross_cpu_allocations = nr_cross_cpu_allocations_; in GetSampleTree()
133 return sample_tree; in GetSampleTree()
Dsample_tree_test.cpp213 TEST(sample_tree, overlapped_map) { in TEST() argument