Searched refs:thread_map_ (Results 1 – 5 of 5) sorted by relevance
/system/extras/simpleperf/ |
D | cmd_trace_sched.cpp | 116 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in simpleperf::__anon0f531dbd0111::TraceSchedCommand 214 auto& thread = thread_map_[r.data->tid]; in ProcessRecord() 222 auto& parent_thread = thread_map_[r.data->ptid]; in ProcessRecord() 223 auto& child_thread = thread_map_[r.data->tid]; in ProcessRecord() 252 ThreadInfo& thread = thread_map_[record.tid_data.tid]; in ProcessSampleRecord() 293 for (auto& pair : thread_map_) { in BuildProcessInfo()
|
D | cmd_stat_impl.h | 211 thread_map_(thread_map), in CounterSummaryBuilder() 259 auto it = thread_map_.find(tid); in AddSummary() 260 CHECK(it != thread_map_.end()); in AddSummary() 292 const std::unordered_map<pid_t, ThreadInfo>& thread_map_; variable
|
D | cmd_stat_test.cpp | 399 if (thread_map_.count(arg.tid) == 0) { in AddCounter() 400 ThreadInfo& thread = thread_map_[arg.tid]; in AddCounter() 423 CounterSummaryBuilder builder(report_per_thread, report_per_core, false, thread_map_, in BuildSummary() 431 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in StatCmdSummaryBuilderTest 566 thread = &thread_map_[tid]; in AddSummary() 583 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in StatCmdSummariesTest
|
D | report_utils.cpp | 405 if (auto it = thread_map_.find(thread_name); it != thread_map_.end()) { in ModifyReportToAggregateThreads() 420 thread_map_[thread_name] = -1; in ModifyReportToAggregateThreads() 422 thread_map_[thread_name] = static_cast<int>(index); in ModifyReportToAggregateThreads()
|
D | report_utils.h | 156 std::unordered_map<std::string, int> thread_map_; variable
|