Searched refs:m_ignore_count (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp116 m_enabled(true), m_one_shot(false), m_ignore_count(0),
128 m_one_shot(one_shot), m_ignore_count(ignore), m_condition_text_hash(0),
142 m_ignore_count(rhs.m_ignore_count), m_inject_condition(false),
159 m_ignore_count = rhs.m_ignore_count;
192 m_ignore_count = incoming.m_ignore_count;
366 m_ignore_count); local
522 if (m_ignore_count !
[all...]
H A DWatchpoint.cpp34 m_watch_write(0), m_watch_modify(0), m_ignore_count(0),
424 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; }
427 bool changed = m_ignore_count != n;
428 m_ignore_count = n;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h300 m_ignore_count = n;
307 uint32_t GetIgnoreCount() const { return m_ignore_count; }
389 uint32_t m_ignore_count; member in class:lldb_private::BreakpointOptions
H A DWatchpoint.h219 uint32_t m_ignore_count; // Number of times to ignore this watchpoint member in class:lldb_private::Watchpoint
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp586 if (option_arg.getAsInteger(0, m_ignore_count))
598 m_ignore_count = 0;
607 uint32_t m_ignore_count = 0; member in class:CommandObjectWatchpointIgnore::CommandOptions
629 target->IgnoreAllWatchpoints(m_options.m_ignore_count);
646 if (target->IgnoreWatchpointByID(wp_ids[i], m_options.m_ignore_count))

Completed in 77 milliseconds