Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dcmd_trace_sched.cpp116 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in simpleperf::__anon0b2fab1f0111::TraceSchedCommand
217 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()
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.cpp390 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 StatCmdSummaryBuilderTest
557 thread = &thread_map_[tid]; in AddSummary()
574 std::unordered_map<pid_t, ThreadInfo> thread_map_; member in StatCmdSummariesTest