Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DBreakpointOptions.cpp128 m_set_flags(0) { in BreakpointOptions()
130 m_set_flags.Set(~((Flags::ValueType)0)); in BreakpointOptions()
141 m_set_flags.Set(eEnabled | eIgnoreCount | eOneShot 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 =()
183 if (incoming.m_set_flags.Test(eEnabled)) in CopyOverSetOptions()
186 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
188 if (incoming.m_set_flags.Test(eOneShot)) in CopyOverSetOptions()
191 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
193 if (incoming.m_set_flags.Test(eCallback)) in CopyOverSetOptions()
[all …]
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h273 m_set_flags.Set(eEnabled); in SetEnabled()
284 m_set_flags.Set(eAutoContinue); in SetAutoContinue()
295 m_set_flags.Set(eOneShot); in SetOneShot()
303 m_set_flags.Set(eIgnoreCount); in SetIgnoreCount()
348 return m_set_flags.AnySet(eAllOptions); in AnySet()
355 return m_set_flags.Test(kind); in IsOptionSet()
404 Flags m_set_flags; variable
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp71 m_bp_opts.m_set_flags.Set(BreakpointOptions::eCondition); in SetOptionValue()