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_auto_continue(false), 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()
158 m_set_flags = rhs.m_set_flags; in operator =()
164 if (incoming.m_set_flags.Test(eEnabled)) in CopyOverSetOptions()
167 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
169 if (incoming.m_set_flags.Test(eOneShot)) in CopyOverSetOptions()
172 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
174 if (incoming.m_set_flags.Test(eCallback)) in CopyOverSetOptions()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h271 m_set_flags.Set(eEnabled); in SetEnabled()
282 m_set_flags.Set(eAutoContinue); in SetAutoContinue()
293 m_set_flags.Set(eOneShot); in SetOneShot()
301 m_set_flags.Set(eIgnoreCount); in SetIgnoreCount()
346 return m_set_flags.AnySet(eAllOptions); in AnySet()
353 return m_set_flags.Test(kind); in IsOptionSet()
402 Flags m_set_flags; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp75 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()