Home
last modified time | relevance | path

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

/external/llvm-project/lldb/tools/debugserver/source/
DDNBBreakpoint.cpp46 #pragma mark-- DNBBreakpointList
48 DNBBreakpointList::DNBBreakpointList() {} in DNBBreakpointList() function in DNBBreakpointList
50 DNBBreakpointList::~DNBBreakpointList() {} in ~DNBBreakpointList()
52 DNBBreakpoint *DNBBreakpointList::Add(nub_addr_t addr, nub_size_t length, in Add()
60 bool DNBBreakpointList::Remove(nub_addr_t addr) { in Remove()
69 DNBBreakpoint *DNBBreakpointList::FindByAddress(nub_addr_t addr) { in FindByAddress()
77 const DNBBreakpoint *DNBBreakpointList::FindByAddress(nub_addr_t addr) const { in FindByAddress()
86 size_t DNBBreakpointList::FindBreakpointsThatOverlapRange( in FindBreakpointsThatOverlapRange()
120 void DNBBreakpointList::Dump() const { in Dump()
127 void DNBBreakpointList::DisableAll() { in DisableAll()
[all …]
DDNBBreakpoint.h117 class DNBBreakpointList {
119 DNBBreakpointList();
120 ~DNBBreakpointList();
DChangeLog334 * DNBBreakpoint.cpp (DNBBreakpointList::FindIDByAddress): Improved
1021 * DNBBreakpoint.cpp (DNBBreakpointList::GetBreakpointAtIndex): New
1023 * DNBBreakpoint.h (DNBBreakpointList::GetBreakpointAtIndex): New
1255 (DNBBreakpointList::Dump): Ditto.
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachProcess.h177 DNBBreakpointList &Breakpoints() { return m_breakpoints; } in Breakpoints()
178 const DNBBreakpointList &Breakpoints() const { return m_breakpoints; } in Breakpoints()
187 DNBBreakpointList &Watchpoints() { return m_watchpoints; } in Watchpoints()
188 const DNBBreakpointList &Watchpoints() const { return m_watchpoints; } in Watchpoints()
426 DNBBreakpointList m_breakpoints; // Breakpoint list for this process
427 DNBBreakpointList m_watchpoints; // Watchpoint list for this process