Home
last modified time | relevance | path

Searched refs:m_watchpoints (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp23 m_watchpoints.push_back(wp_sp); in Add()
46 (uint64_t)m_watchpoints.size()); in DumpWithLevel()
48 wp_collection::const_iterator pos, end = m_watchpoints.end(); in DumpWithLevel()
49 for (pos = m_watchpoints.begin(); pos != end; ++pos) in DumpWithLevel()
57 if (!m_watchpoints.empty()) { in FindByAddress()
58 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindByAddress()
59 for (pos = m_watchpoints.begin(); pos != end; ++pos) { in FindByAddress()
75 if (!m_watchpoints.empty()) { in FindBySpec()
76 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindBySpec()
77 for (pos = m_watchpoints in FindBySpec()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DNativeWatchpointList.cpp18 m_watchpoints[addr] = {addr, size, watch_flags, hardware}; in Add()
23 m_watchpoints.erase(addr); in Remove()
29 return m_watchpoints; in GetWatchpointMap()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointList.h168 return m_watchpoints.size(); in GetSize()
194 return WatchpointIterable(m_watchpoints, m_mutex); in Watchpoints()
207 wp_collection m_watchpoints; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeWatchpointList.h37 WatchpointMap m_watchpoints;