Searched refs:thread_map_ (Results 1 – 3 of 3) sorted by relevance
116 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in simpleperf::__anon0b2fab1f0111::TraceSchedCommand217 auto& thread = thread_map_[r.data->tid]; in ProcessRecord()225 auto& parent_thread = thread_map_[r.data->ptid]; in ProcessRecord()226 auto& child_thread = thread_map_[r.data->tid]; in ProcessRecord()251 ThreadInfo& thread = thread_map_[record.tid_data.tid]; in ProcessSampleRecord()292 for (auto& pair : thread_map_) { in BuildProcessInfo()
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
390 if (thread_map_.count(arg.tid) == 0) { in AddCounter()391 ThreadInfo& thread = thread_map_[arg.tid]; in AddCounter()414 CounterSummaryBuilder builder(report_per_thread, report_per_core, false, thread_map_, in BuildSummary()422 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in StatCmdSummaryBuilderTest557 thread = &thread_map_[tid]; in AddSummary()574 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in StatCmdSummariesTest