Lines Matching refs:psb_blocks
95 std::vector<PSBBlock> psb_blocks; in GetPSBBlocksForCPU() local
104 psb_blocks = std::move(*split_trace); in GetPSBBlocksForCPU()
109 return psb_blocks; in GetPSBBlocksForCPU()
128 Expected<std::vector<PSBBlock>> psb_blocks = in DoCorrelateContextSwitchesAndIntelPtTraces() local
130 if (!psb_blocks) in DoCorrelateContextSwitchesAndIntelPtTraces()
131 return psb_blocks.takeError(); in DoCorrelateContextSwitchesAndIntelPtTraces()
133 m_total_psb_blocks += psb_blocks->size(); in DoCorrelateContextSwitchesAndIntelPtTraces()
136 auto it = psb_blocks->begin(); in DoCorrelateContextSwitchesAndIntelPtTraces()
141 for (; it != psb_blocks->end() && in DoCorrelateContextSwitchesAndIntelPtTraces()
145 execution.psb_blocks.push_back(*it); in DoCorrelateContextSwitchesAndIntelPtTraces()
167 m_unattributed_psb_blocks += psb_blocks->end() - it; in DoCorrelateContextSwitchesAndIntelPtTraces()
228 count += execution.psb_blocks.size(); in GePSBBlocksCountForThread()