Home
last modified time | relevance | path

Searched refs:m_one_shot (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp108 m_callback_is_synchronous(false), m_enabled(true), m_one_shot(false), in BreakpointOptions()
120 m_one_shot(one_shot), m_ignore_count(ignore), m_condition_text_hash(0), in BreakpointOptions()
133 m_enabled(rhs.m_enabled), m_one_shot(rhs.m_one_shot), in BreakpointOptions()
150 m_one_shot = rhs.m_one_shot; in operator =()
171 m_one_shot = incoming.m_one_shot; in CopyOverSetOptions()
352 m_one_shot); in SerializeToStructuredData()
514 if (m_ignore_count != 0 || !m_enabled || m_one_shot || m_auto_continue || in GetDescription()
531 if (m_one_shot) in GetDescription()
644 m_one_shot = false; in Clear()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h288 bool IsOneShot() const { return m_one_shot; } in IsOneShot()
292 m_one_shot = one_shot; in SetOneShot()
387 bool m_one_shot; variable