Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp34 m_watch_write(0), m_watch_modify(0), m_ignore_count(0) { in Watchpoint()
222 if (!m_watch_modify || m_watch_read) in WatchedValueReportable()
279 if (m_watch_read && !m_watch_modify && !m_watch_write) in DumpSnapshots()
356 m_watch_write ? "w" : "", m_watch_modify ? "m" : ""); in DumpWithLevel()
430 int old_watch_modify = m_watch_modify; in SetWatchpointType()
433 m_watch_modify = (type & LLDB_WATCH_TYPE_MODIFY) != 0; in SetWatchpointType()
436 old_watch_modify != m_watch_modify)) in SetWatchpointType()
444 bool Watchpoint::WatchpointModify() const { return m_watch_modify != 0; } in WatchpointModify()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h218 m_watch_modify : 1; // 1 if we stop when the watched data is changed variable