Home
last modified time | relevance | path

Searched refs:m_watch_write (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DWatchpoint.cpp32 m_watch_write(0), m_watch_was_read(0), m_watch_was_written(0), in Watchpoint()
196 m_watch_write ? "w" : ""); in DumpWithLevel()
257 int old_watch_write = m_watch_write; in SetWatchpointType()
259 m_watch_write = (type & LLDB_WATCH_TYPE_WRITE) != 0; in SetWatchpointType()
261 (old_watch_read != m_watch_read || old_watch_write != m_watch_write)) in SetWatchpointType()
267 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h82 m_watch_write = (type & WATCH_TYPE_WRITE) != 0; in SetIsWatchpoint()
87 bool WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
112 m_watch_write : 1; // 1 if we stop when the watched data is written to variable
H A DDNBBreakpoint.cpp25 m_is_watchpoint(0), m_watch_read(0), m_watch_write(0), in DNBBreakpoint()
42 m_watch_write ? "w" : "", GetHardwareIndex()); in Dump()
H A DChangeLog716 m_watch_write, and m_hw_index.
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h180 m_watch_write : 1, // 1 if we stop when the watched data is written to variable