Home
last modified time | relevance | path

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

/external/lldb/source/Breakpoint/
DWatchpoint.cpp39 m_watch_write(0), in Watchpoint()
247 m_watch_write ? "w" : ""); in DumpWithLevel()
325 int old_watch_write = m_watch_write; in SetWatchpointType()
327 m_watch_write = (type & LLDB_WATCH_TYPE_WRITE) != 0; in SetWatchpointType()
328 if (notify && (old_watch_read != m_watch_read || old_watch_write != m_watch_write)) in SetWatchpointType()
340 return m_watch_write != 0; in WatchpointWrite()
/external/lldb/tools/debugserver/source/
DDNBBreakpoint.h94 m_watch_write = (type & WATCH_TYPE_WRITE) != 0; in SetIsWatchpoint()
99 bool WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
125 m_watch_write:1; // 1 if we stop when the watched data is written to variable
DDNBBreakpoint.cpp32 m_watch_write(0), in DNBBreakpoint()
60 m_watch_write ? "w" : "", in Dump()
DChangeLog716 m_watch_write, and m_hw_index.
/external/lldb/include/lldb/Breakpoint/
DWatchpoint.h222 m_watch_write:1, // 1 if we stop when the watched data is written to variable