Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp128 m_set_flags(0) { in BreakpointOptions()
155 m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) { in BreakpointOptions()
177 m_set_flags = rhs.m_set_flags; in operator =()
186 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
191 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
199 m_set_flags.Set(eCallback); in CopyOverSetOptions()
419 m_set_flags.Set(eCallback); in SetCallback()
430 m_set_flags.Set(eCallback); in SetCallback()
438 m_set_flags.Clear(eCallback); in ClearCallback()
615 m_set_flags.Set(eCallback); in SetCommandDataCallback()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h272 m_set_flags.Set(eEnabled); in SetEnabled()
283 m_set_flags.Set(eAutoContinue); in SetAutoContinue()
294 m_set_flags.Set(eOneShot); in SetOneShot()
302 m_set_flags.Set(eIgnoreCount); in SetIgnoreCount()
347 return m_set_flags.AnySet(eAllOptions); in AnySet()
354 return m_set_flags.Test(kind); in IsOptionSet()
403 Flags m_set_flags; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp71 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()