Home
last modified time | relevance | path

Searched refs:m_override_should_notify (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h56 m_override_should_notify = override_value ? eLazyBoolYes : eLazyBoolNo; in OverrideShouldNotify()
61 if (m_override_should_notify == eLazyBoolCalculate) in ShouldNotify()
64 return m_override_should_notify == eLazyBoolYes; in ShouldNotify()
186 LazyBool m_override_should_notify; variable
H A DThread.h1344 LazyBool m_override_should_notify; variable
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp227 m_override_should_notify(eLazyBoolCalculate), in Thread()
462 if (m_override_should_notify != eLazyBoolCalculate) in SetStopInfo()
463 m_stop_info_sp->OverrideShouldNotify(m_override_should_notify == in SetStopInfo()
483 m_override_should_notify = (vote == eVoteYes ? eLazyBoolYes : eLazyBoolNo); in SetShouldReportStop()
485 m_stop_info_sp->OverrideShouldNotify(m_override_should_notify == in SetShouldReportStop()
662 m_override_should_notify = eLazyBoolCalculate; in ShouldResume()
H A DStopInfo.cpp37 m_description(), m_override_should_notify(eLazyBoolCalculate), in StopInfo()