Home
last modified time | relevance | path

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

/external/lldb/source/Breakpoint/
DWatchpointList.cpp22 m_watchpoints (), in WatchpointList()
38 m_watchpoints.push_back(wp_sp); in Add()
61 (uint64_t)m_watchpoints.size()); in DumpWithLevel()
63 wp_collection::const_iterator pos, end = m_watchpoints.end(); in DumpWithLevel()
64 for (pos = m_watchpoints.begin(); pos != end; ++pos) in DumpWithLevel()
74 if (!m_watchpoints.empty()) in FindByAddress()
76 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindByAddress()
77 for (pos = m_watchpoints.begin(); pos != end; ++pos) in FindByAddress()
92 if (!m_watchpoints.empty()) in FindBySpec()
94 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindBySpec()
[all …]
/external/lldb/include/lldb/Breakpoint/
DWatchpointList.h221 return m_watchpoints.size(); in GetSize()
268 wp_collection m_watchpoints; variable
/external/lldb/tools/debugserver/source/MacOSX/
DMachProcess.h132 DNBBreakpointList& Watchpoints() { return m_watchpoints; } in Watchpoints()
133 const DNBBreakpointList& Watchpoints() const { return m_watchpoints; } in Watchpoints()
301 DNBBreakpointList m_watchpoints; // Watchpoint list for this process variable
DMachProcess.cpp100 m_watchpoints (), in MachProcess()
746 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); in CreateWatchpoint()
752 wp = m_watchpoints.Add(addr, length, hardware); in CreateWatchpoint()
763 m_watchpoints.Remove(addr); in CreateWatchpoint()
785 m_watchpoints.DisableAllWatchpoints(this); in DisableAllWatchpoints()
788 m_watchpoints.RemoveDisabled(); in DisableAllWatchpoints()
932 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); in DisableWatchpoint()
950 m_watchpoints.Remove(addr); in DisableWatchpoint()
1051 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); in EnableWatchpoint()
/external/lldb/tools/debugserver/source/
DChangeLog699 * RNBRemote.h (class RNBRemote): Added m_watchpoints member.