Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Breakpoint/
DWatchpointList.cpp23 m_watchpoints.push_back(wp_sp); in Add()
44 (uint64_t)m_watchpoints.size()); in DumpWithLevel()
46 wp_collection::const_iterator pos, end = m_watchpoints.end(); in DumpWithLevel()
47 for (pos = m_watchpoints.begin(); pos != end; ++pos) in DumpWithLevel()
55 if (!m_watchpoints.empty()) { in FindByAddress()
56 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindByAddress()
57 for (pos = m_watchpoints.begin(); pos != end; ++pos) { in FindByAddress()
73 if (!m_watchpoints.empty()) { in FindBySpec()
74 wp_collection::const_iterator pos, end = m_watchpoints.end(); in FindBySpec()
75 for (pos = m_watchpoints.begin(); pos != end; ++pos) in FindBySpec()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Host/common/
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()
/openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/
DWatchpointList.h168 return m_watchpoints.size(); in GetSize()
194 return WatchpointIterable(m_watchpoints, m_mutex); in Watchpoints()
207 wp_collection m_watchpoints; variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp413 *stop_thread, id, m_watchpoints[id].address); in RefreshStateAfterStop()
773 for (const std::map<int, WatchpointInfo>::value_type &p : m_watchpoints) { in OnCreateThread()
895 m_watchpoints[wp->GetID()] = info; in EnableWatchpoint()
911 auto it = m_watchpoints.find(wp->GetID()); in DisableWatchpoint()
912 if (it == m_watchpoints.end()) { in DisableWatchpoint()
933 m_watchpoints.erase(it); in DisableWatchpoint()
DProcessWindows.h117 std::map<lldb::break_id_t, WatchpointInfo> m_watchpoints; variable
/openbsd/src/gnu/llvm/lldb/include/lldb/Host/common/
DNativeWatchpointList.h37 WatchpointMap m_watchpoints;
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
DMachProcess.h195 DNBBreakpointList &Watchpoints() { return m_watchpoints; } in Watchpoints()
196 const DNBBreakpointList &Watchpoints() const { return m_watchpoints; } in Watchpoints()
442 DNBBreakpointList m_watchpoints; // Watchpoint list for this process variable
DMachProcess.mm523 m_private_events(0, kAllEventsMask), m_breakpoints(), m_watchpoints(), function
1870 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
1878 wp = m_watchpoints.Add(addr, length, hardware);
1891 m_watchpoints.Remove(addr);
1911 m_watchpoints.DisableAllWatchpoints(this);
1914 m_watchpoints.RemoveDisabled();
2064 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
2083 m_watchpoints.Remove(addr);
2182 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DChangeLog699 * RNBRemote.h (class RNBRemote): Added m_watchpoints member.