Searched refs:thread_map (Results 1 – 3 of 3) sorted by relevance
352 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]
162 std::unordered_map<pid_t, std::unique_ptr<SampleRecord>> thread_map; member404 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()
206 const std::unordered_map<pid_t, ThreadInfo>& thread_map, in CounterSummaryBuilder() argument211 thread_map_(thread_map), in CounterSummaryBuilder()