Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTMultiCpuDecoder.cpp78 m_continuous_executions_per_thread->find(thread.GetID()); in Decode()
79 if (it != m_continuous_executions_per_thread->end()) in Decode()
181 if (m_continuous_executions_per_thread) in CorrelateContextSwitchesAndIntelPtTraces()
187 m_continuous_executions_per_thread.emplace(std::move(*correlation)); in CorrelateContextSwitchesAndIntelPtTraces()
202 if (!m_continuous_executions_per_thread) in GetNumContinuousExecutionsForThread()
204 auto it = m_continuous_executions_per_thread->find(tid); in GetNumContinuousExecutionsForThread()
205 if (it == m_continuous_executions_per_thread->end()) in GetNumContinuousExecutionsForThread()
211 if (!m_continuous_executions_per_thread) in GetTotalContinuousExecutionsCount()
214 for (const auto &kv : *m_continuous_executions_per_thread) in GetTotalContinuousExecutionsCount()
221 if (!m_continuous_executions_per_thread) in GePSBBlocksCountForThread()
[all …]
H A DTraceIntelPTMultiCpuDecoder.h98 m_continuous_executions_per_thread; variable