Home
last modified time | relevance | path

Searched refs:m_continuous_executions_per_thread (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTMultiCpuDecoder.cpp80 m_continuous_executions_per_thread->find(thread.GetID()); in Decode()
81 if (it != m_continuous_executions_per_thread->end()) in Decode()
183 if (m_continuous_executions_per_thread) in CorrelateContextSwitchesAndIntelPtTraces()
204 if (!m_continuous_executions_per_thread) in GetNumContinuousExecutionsForThread()
206 auto it = m_continuous_executions_per_thread->find(tid); in GetNumContinuousExecutionsForThread()
207 if (it == m_continuous_executions_per_thread->end()) in GetNumContinuousExecutionsForThread()
213 if (!m_continuous_executions_per_thread) in GetTotalContinuousExecutionsCount()
216 for (const auto &kv : *m_continuous_executions_per_thread) in GetTotalContinuousExecutionsCount()
223 if (!m_continuous_executions_per_thread) in GePSBBlocksCountForThread()
226 auto it = m_continuous_executions_per_thread->find(tid); in GePSBBlocksCountForThread()
[all …]
H A DTraceIntelPTMultiCpuDecoder.h97 m_continuous_executions_per_thread; variable