Home
last modified time | relevance | path

Searched refs:thread_map_ (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/
Dcmd_trace_sched.cpp116 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()
Dcmd_stat_impl.h211 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
Dcmd_stat_test.cpp399 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
Dreport_utils.cpp405 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()
Dreport_utils.h156 std::unordered_map<std::string, int> thread_map_; variable