Searched refs:m_watchpoints (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/lldb/source/Breakpoint/ |
D | WatchpointList.cpp | 16 : m_watchpoints(), m_mutex(), m_next_wp_id(0) {} in WatchpointList() 24 m_watchpoints.push_back(wp_sp); in Add() 45 (uint64_t)m_watchpoints.size()); in DumpWithLevel() 47 wp_collection::const_iterator pos, end = m_watchpoints.end(); in DumpWithLevel() 48 for (pos = m_watchpoints.begin(); pos != end; ++pos) in DumpWithLevel() 56 if (!m_watchpoints.empty()) { in FindByAddress() 57 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindByAddress() 58 for (pos = m_watchpoints.begin(); pos != end; ++pos) { in FindByAddress() 74 if (!m_watchpoints.empty()) { in FindBySpec() 75 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindBySpec() [all …]
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeWatchpointList.cpp | 18 m_watchpoints[addr] = {addr, size, watch_flags, hardware}; in Add() 23 m_watchpoints.erase(addr); in Remove() 29 return m_watchpoints; in GetWatchpointMap()
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | WatchpointList.h | 162 return m_watchpoints.size(); in GetSize() 198 wp_collection m_watchpoints; variable
|
/external/llvm-project/lldb/include/lldb/Host/common/ |
D | NativeWatchpointList.h | 37 WatchpointMap m_watchpoints;
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindows.cpp | 425 *stop_thread, id, m_watchpoints[id].address); in RefreshStateAfterStop() 762 for (const std::map<int, WatchpointInfo>::value_type &p : m_watchpoints) { in OnCreateThread() 884 m_watchpoints[wp->GetID()] = info; in EnableWatchpoint() 900 auto it = m_watchpoints.find(wp->GetID()); in DisableWatchpoint() 901 if (it == m_watchpoints.end()) { in DisableWatchpoint() 922 m_watchpoints.erase(it); in DisableWatchpoint()
|
D | ProcessWindows.h | 116 std::map<lldb::break_id_t, WatchpointInfo> m_watchpoints; variable
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.h | 187 DNBBreakpointList &Watchpoints() { return m_watchpoints; } in Watchpoints() 188 const DNBBreakpointList &Watchpoints() const { return m_watchpoints; } in Watchpoints() 427 DNBBreakpointList m_watchpoints; // Watchpoint list for this process variable
|
D | MachProcess.mm | 511 m_private_events(0, kAllEventsMask), m_breakpoints(), m_watchpoints(), function 1839 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); 1847 wp = m_watchpoints.Add(addr, length, hardware); 1860 m_watchpoints.Remove(addr); 1880 m_watchpoints.DisableAllWatchpoints(this); 1883 m_watchpoints.RemoveDisabled(); 2033 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); 2052 m_watchpoints.Remove(addr); 2151 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | ChangeLog | 699 * RNBRemote.h (class RNBRemote): Added m_watchpoints member.
|