Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp34 m_watch_write(0), m_watch_modify(0), m_ignore_count(0), in Watchpoint()
218 if (!m_watch_modify || m_watch_read) in WatchedValueReportable()
275 if (m_watch_read && !m_watch_modify && !m_watch_write) in DumpSnapshots()
348 m_watch_write ? "w" : "", m_watch_modify ? "m" : ""); in DumpWithLevel()
408 int old_watch_modify = m_watch_modify; in SetWatchpointType()
411 m_watch_modify = (type & LLDB_WATCH_TYPE_MODIFY) != 0; in SetWatchpointType()
414 old_watch_modify != m_watch_modify)) in SetWatchpointType()
422 bool Watchpoint::WatchpointModify() const { return m_watch_modify != 0; } in WatchpointModify()
/freebsd-14.2/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