Searched refs:m_watch_read (Results 1 – 7 of 7) sorted by relevance
/llvm-project/lldb/source/Breakpoint/ |
H A D | Watchpoint.cpp | 33 m_is_ephemeral(false), m_disabled_count(0), m_watch_read(0), in Watchpoint() 222 if (!m_watch_modify || m_watch_read) in WatchedValueReportable() 279 if (m_watch_read && !m_watch_modify && !m_watch_write) in DumpSnapshots() 355 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel() 428 int old_watch_read = m_watch_read; in SetWatchpointType() 431 m_watch_read = (type & LLDB_WATCH_TYPE_READ) != 0; in SetWatchpointType() 435 (old_watch_read != m_watch_read || old_watch_write != m_watch_write || in SetWatchpointType() 440 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
|
H A D | WatchpointResource.cpp | 22 m_watch_read(read), m_watch_write(write) {} in WatchpointResource() 33 bool WatchpointResource::WatchpointResourceRead() const { return m_watch_read; } in WatchpointResourceRead() 40 m_watch_read = read; in SetType()
|
/llvm-project/lldb/tools/debugserver/source/ |
H A 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
|
H A 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()
|
H A D | ChangeLog | 715 added m_tid, m_enabled, m_hw_preferred, m_is_watchpoint, m_watch_read,
|
/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | WatchpointResource.h | 146 bool m_watch_read; variable
|
H A D | Watchpoint.h | 216 uint32_t m_watch_read : 1, // 1 if we stop when the watched data is read from variable
|