Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp143 m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) { in BreakpointOptions()
166 m_set_flags = rhs.m_set_flags; in operator =()
175 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
180 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
188 m_set_flags.Set(eCallback); in CopyOverSetOptions()
408 m_set_flags.Set(eCallback); in SetCallback()
419 m_set_flags.Set(eCallback); in SetCallback()
427 m_set_flags.Clear(eCallback); in ClearCallback()
508 m_set_flags.Set(eThreadSpec); in SetThreadID()
604 m_set_flags.Set(eCallback); in SetCommandDataCallback()
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp73 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()