Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DWatchpoint.cpp31 m_watch_write(0), m_watch_was_read(0), m_watch_was_written(0), in Watchpoint()
197 m_watch_write ? "w" : ""); in DumpWithLevel()
258 int old_watch_write = m_watch_write; in SetWatchpointType()
260 m_watch_write = (type & LLDB_WATCH_TYPE_WRITE) != 0; in SetWatchpointType()
262 (old_watch_read != m_watch_read || old_watch_write != m_watch_write)) in SetWatchpointType()
268 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
/external/llvm-project/lldb/tools/debugserver/source/
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
DDNBBreakpoint.cpp25 m_is_watchpoint(0), m_watch_read(0), m_watch_write(0), in DNBBreakpoint()
42 m_watch_write ? "w" : "", GetHardwareIndex()); in Dump()
DChangeLog716 m_watch_write, and m_hw_index.
/external/llvm-project/lldb/include/lldb/Breakpoint/
DWatchpoint.h180 m_watch_write : 1, // 1 if we stop when the watched data is written to variable