Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dgecko_profile_generator.py352 def remove_stack_gaps(max_remove_gap_length: int, thread_map: Dict[int, Thread]) -> None:
359 for tid in list(thread_map.keys()):
360 thread = thread_map[tid]
367 del thread_map[tid]
/system/extras/simpleperf/
Dreport_lib_interface.cpp162 std::unordered_map<pid_t, std::unique_ptr<SampleRecord>> thread_map; member
404 auto it = trace_offcpu_.thread_map.find(tid); in ProcessSampleRecord()
405 if (it == trace_offcpu_.thread_map.end() || !it->second) { in ProcessSampleRecord()
409 if (it == trace_offcpu_.thread_map.end()) { in ProcessSampleRecord()
410 trace_offcpu_.thread_map[tid].reset(sr); in ProcessSampleRecord()
439 auto it = trace_offcpu_.thread_map.find(tid); in ProcessSwitchRecord()
440 if (it != trace_offcpu_.thread_map.end() && it->second) { in ProcessSwitchRecord()
Dcmd_stat_impl.h206 const std::unordered_map<pid_t, ThreadInfo>& thread_map, in CounterSummaryBuilder() argument
211 thread_map_(thread_map), in CounterSummaryBuilder()