Searched refs:thread_tree_ (Results 1 - 6 of 6) sorted by relevance

/system/extras/simpleperf/
H A Dsample_tree.cpp35 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(pid, tid);
36 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel);
37 const Symbol* symbol = thread_tree_->FindSymbol(map, ip);
49 const ThreadEntry* thread = thread_tree_->FindThreadOrNew(pid, tid);
50 const MapEntry* from_map = thread_tree_->FindMap(thread, from_ip, false);
51 if (from_map == thread_tree_->UnknownMap()) {
52 from_map = thread_tree_->FindMap(thread, from_ip, true);
54 const Symbol* from_symbol = thread_tree_->FindSymbol(from_map, from_ip);
55 const MapEntry* to_map = thread_tree_->FindMap(thread, to_ip, false);
56 if (to_map == thread_tree_
[all...]
H A Dthread_tree.cpp46 auto it = thread_tree_.find(tid);
47 if (it == thread_tree_.end()) {
53 auto pair = thread_tree_.insert(std::make_pair(tid, std::unique_ptr<ThreadEntry>(thread)));
69 auto it = thread_tree_.find(tid);
70 if (it == thread_tree_.end()) {
72 it = thread_tree_.find(tid);
203 thread_tree_.clear();
H A Dsample_tree.h78 : thread_tree_(thread_tree),
142 ThreadTree* thread_tree_; member in class:SampleTree
H A Dcmd_record.cpp179 ThreadTree thread_tree_; member in class:RecordCommand
641 BuildThreadTree(*record, &thread_tree_);
692 ThreadEntry* thread = thread_tree_.FindThreadOrNew(r.tid_data.pid, r.tid_data.tid);
709 thread_tree_.Clear();
721 BuildThreadTree(*record, &thread_tree_);
836 const ThreadEntry* thread = thread_tree_.FindThreadOrNew(r.tid_data.pid, r.tid_data.tid);
837 const MapEntry* map = thread_tree_.FindMap(thread, r.ip_data.ip, in_kernel);
H A Dthread_tree.h88 std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_; member in class:simpleperf::ThreadTree
H A Dcmd_report.cpp282 std::unique_ptr<SampleTree>(new SampleTree(&thread_tree_, compare_sample_callback));
311 ThreadTree thread_tree_; member in class:ReportCommand
530 thread_tree_.AddThread(0, 0, "swapper");
538 BuildThreadTree(*record, &thread_tree_);

Completed in 93 milliseconds