Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Target/
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()
167 LazyBool m_override_should_notify; variable
DThread.h1278 LazyBool m_override_should_notify; variable
/external/llvm-project/lldb/source/Target/
DThread.cpp236 m_override_should_notify(eLazyBoolCalculate), in Thread()
445 if (m_override_should_notify != eLazyBoolCalculate) in SetStopInfo()
446 m_stop_info_sp->OverrideShouldNotify(m_override_should_notify == in SetStopInfo()
466 m_override_should_notify = (vote == eVoteYes ? eLazyBoolYes : eLazyBoolNo); in SetShouldReportStop()
468 m_stop_info_sp->OverrideShouldNotify(m_override_should_notify == in SetShouldReportStop()
675 m_override_should_notify = eLazyBoolCalculate; in ShouldResume()
DStopInfo.cpp34 m_description(), m_override_should_notify(eLazyBoolCalculate), in StopInfo()