Lines Matching refs:thread_tree_
123 thread_tree_(thread_tree), in ReportCmdSampleTreeBuilder()
167 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(r.tid_data.pid, r.tid_data.tid); in CreateSample()
168 const MapEntry* map = thread_tree_->FindMap(thread, r.ip_data.ip, in_kernel); in CreateSample()
170 const Symbol* symbol = thread_tree_->FindSymbol(map, r.ip_data.ip, &vaddr_in_file); in CreateSample()
178 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(r.tid_data.pid, r.tid_data.tid); in CreateBranchSample()
179 const MapEntry* from_map = thread_tree_->FindMap(thread, item.from); in CreateBranchSample()
181 const Symbol* from_symbol = thread_tree_->FindSymbol(from_map, item.from, &from_vaddr_in_file); in CreateBranchSample()
182 const MapEntry* to_map = thread_tree_->FindMap(thread, item.to); in CreateBranchSample()
184 const Symbol* to_symbol = thread_tree_->FindSymbol(to_map, item.to, &to_vaddr_in_file); in CreateBranchSample()
199 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel); in CreateCallChainSample()
200 if (thread_tree_->IsUnknownDso(map->dso)) { in CreateCallChainSample()
206 const Symbol* symbol = thread_tree_->FindSymbol(map, ip, &vaddr_in_file); in CreateCallChainSample()
214 return thread_tree_->FindThreadOrNew(sample->pid, sample->tid); in GetThreadOfSample()
253 ThreadTree* thread_tree_; member in simpleperf::__anonf73725a60111::ReportCmdSampleTreeBuilder
454 ThreadTree thread_tree_; member in simpleperf::__anonf73725a60111::ReportCommand
596 thread_tree_.ShowIpForUnknownSymbol(); in ParseOptions()
739 sample_tree_builder_options_.thread_tree = &thread_tree_; in BuildSampleComparatorAndDisplayer()
798 record_file_reader_->LoadBuildIdAndFileFeatures(thread_tree_); in ReadFeaturesFromRecordFile()
869 thread_tree_.Update(*record); in ProcessRecord()