HomeSort by relevance Sort by last modified time
    Searched refs:thread_tree_ (Results 1 - 6 of 6) sorted by null

  /system/extras/simpleperf/
sample_tree.cpp 35 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_->UnknownMap())
    [all...]
thread_tree.cpp 46 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();
sample_tree.h 78 : thread_tree_(thread_tree),
142 ThreadTree* thread_tree_; member in class:SampleTree
thread_tree.h 88 std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_; member in class:simpleperf::ThreadTree
cmd_record.cpp 179 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);
cmd_report.cpp 282 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 188 milliseconds