Lines Matching refs:thread_tree_
137 thread_tree_(thread_tree), in ReportCmdSampleTreeBuilder()
178 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(r.tid_data.pid, r.tid_data.tid); in CreateSample()
179 const MapEntry* map = thread_tree_->FindMap(thread, r.ip_data.ip, in_kernel); in CreateSample()
181 const Symbol* symbol = thread_tree_->FindSymbol(map, r.ip_data.ip, &vaddr_in_file); in CreateSample()
193 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(r.tid_data.pid, r.tid_data.tid); in CreateBranchSample()
194 const MapEntry* from_map = thread_tree_->FindMap(thread, item.from); in CreateBranchSample()
196 const Symbol* from_symbol = thread_tree_->FindSymbol(from_map, item.from, &from_vaddr_in_file); in CreateBranchSample()
197 const MapEntry* to_map = thread_tree_->FindMap(thread, item.to); in CreateBranchSample()
199 const Symbol* to_symbol = thread_tree_->FindSymbol(to_map, item.to, &to_vaddr_in_file); in CreateBranchSample()
214 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel); in CreateCallChainSample()
215 if (thread_tree_->IsUnknownDso(map->dso)) { in CreateCallChainSample()
221 const Symbol* symbol = thread_tree_->FindSymbol(map, ip, &vaddr_in_file); in CreateCallChainSample()
230 return thread_tree_->FindThreadOrNew(sample->pid, sample->tid); in GetThreadOfSample()
293 ThreadTree* thread_tree_; member in simpleperf::__anon235bfe9f0111::ReportCmdSampleTreeBuilder
476 record_filter_(thread_tree_) {} in ReportCommand()
498 ThreadTree thread_tree_; member in simpleperf::__anon235bfe9f0111::ReportCommand
657 thread_tree_.ShowIpForUnknownSymbol(); in ParseOptions()
841 sample_tree_builder_options_.thread_tree = &thread_tree_; in BuildSampleComparatorAndDisplayer()
902 if (!record_file_reader_->LoadBuildIdAndFileFeatures(thread_tree_)) { in ReadFeaturesFromRecordFile()
960 thread_tree_.Update(*record); in ProcessRecord()