Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DBreakpointOptions.cpp126 m_enabled(true), m_one_shot(false), m_ignore_count(0), m_thread_spec_up(), in BreakpointOptions()
138 m_one_shot(one_shot), m_ignore_count(ignore), in BreakpointOptions()
153 m_enabled(rhs.m_enabled), m_one_shot(rhs.m_one_shot), in BreakpointOptions()
170 m_one_shot = rhs.m_one_shot; in operator =()
190 m_one_shot = incoming.m_one_shot; in CopyOverSetOptions()
371 m_one_shot); in SerializeToStructuredData()
535 if (m_ignore_count != 0 || !m_enabled || m_one_shot || m_auto_continue || in GetDescription()
552 if (m_one_shot) in GetDescription()
665 m_one_shot = false; in Clear()
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h290 bool IsOneShot() const { return m_one_shot; } in IsOneShot()
294 m_one_shot = one_shot; in SetOneShot()
389 bool m_one_shot; variable