Searched refs:m_watch_read (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lldb/source/Breakpoint/ |
D | Watchpoint.cpp | 30 m_is_ephemeral(false), m_disabled_count(0), m_watch_read(0), in Watchpoint() 196 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel() 257 int old_watch_read = m_watch_read; in SetWatchpointType() 259 m_watch_read = (type & LLDB_WATCH_TYPE_READ) != 0; in SetWatchpointType() 262 (old_watch_read != m_watch_read || old_watch_write != m_watch_write)) in SetWatchpointType() 266 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.h | 81 m_watch_read = (type & WATCH_TYPE_READ) != 0; in SetIsWatchpoint() 86 bool WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead() 111 m_watch_read : 1, // 1 if we stop when the watched data is read from variable
|
D | DNBBreakpoint.cpp | 25 m_is_watchpoint(0), m_watch_read(0), m_watch_write(0), in DNBBreakpoint() 41 IsHardware() ? "hardware" : "software", m_watch_read ? "r" : "", in Dump()
|
D | ChangeLog | 715 added m_tid, m_enabled, m_hw_preferred, m_is_watchpoint, m_watch_read,
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | Watchpoint.h | 179 uint32_t m_watch_read : 1, // 1 if we stop when the watched data is read from variable
|