Home
last modified time | relevance | path

Searched refs:m_set_flags (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp110 m_set_flags(0) { in BreakpointOptions()
112 m_set_flags.Set(~((Flags::ValueType)0)); in BreakpointOptions()
122 m_set_flags.Set(eEnabled | eIgnoreCount | eOneShot | eAutoContinue); in BreakpointOptions()
135 m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) { in BreakpointOptions()
156 m_set_flags = rhs.m_set_flags; in operator =()
162 if (incoming.m_set_flags.Test(eEnabled)) in CopyOverSetOptions()
165 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
167 if (incoming.m_set_flags.Test(eOneShot)) in CopyOverSetOptions()
170 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
172 if (incoming.m_set_flags.Test(eCallback)) in CopyOverSetOptions()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h269 m_set_flags.Set(eEnabled); in SetEnabled()
280 m_set_flags.Set(eAutoContinue); in SetAutoContinue()
291 m_set_flags.Set(eOneShot); in SetOneShot()
299 m_set_flags.Set(eIgnoreCount); in SetIgnoreCount()
344 return m_set_flags.AnySet(eAllOptions); in AnySet()
351 return m_set_flags.Test(kind); in IsOptionSet()
398 Flags m_set_flags; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp76 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()