Home | History | Annotate | Download | only in Breakpoint

Lines Matching refs:BreakpointSiteList

1 //===-- BreakpointSiteList.cpp ----------------------------------*- C++ -*-===//
10 #include "lldb/Breakpoint/BreakpointSiteList.h"
22 BreakpointSiteList::BreakpointSiteList() :
28 BreakpointSiteList::~BreakpointSiteList()
36 BreakpointSiteList::Add(const BreakpointSiteSP &bp)
54 BreakpointSiteList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t site_id)
69 BreakpointSiteList::FindIDByAddress (lldb::addr_t addr)
74 //DBLogIf(PD_LOG_BREAKPOINTS, "BreakpointSiteList::%s ( addr = 0x%8.8" PRIx64 " ) => %u", __FUNCTION__, (uint64_t)addr, bp->GetID());
77 //DBLogIf(PD_LOG_BREAKPOINTS, "BreakpointSiteList::%s ( addr = 0x%8.8" PRIx64 " ) => NONE", __FUNCTION__, (uint64_t)addr);
82 BreakpointSiteList::Remove (lldb::break_id_t break_id)
95 BreakpointSiteList::RemoveByAddress (lldb::addr_t address)
124 BreakpointSiteList::collection::iterator
125 BreakpointSiteList::GetIDIterator (lldb::break_id_t break_id)
132 BreakpointSiteList::collection::const_iterator
133 BreakpointSiteList::GetIDConstIterator (lldb::break_id_t break_id) const
141 BreakpointSiteList::FindByID (lldb::break_id_t break_id)
153 BreakpointSiteList::FindByID (lldb::break_id_t break_id) const
165 BreakpointSiteList::FindByAddress (lldb::addr_t addr)
176 BreakpointSiteList::BreakpointSiteContainsBreakpoint (lldb::break_id_t bp_site_id, lldb::break_id_t bp_id)
187 BreakpointSiteList::Dump (Stream *s) const
191 s->Printf("BreakpointSiteList with %u BreakpointSites:\n", (uint32_t)m_bp_site_list.size());
201 BreakpointSiteList::ForEach (std::function <void(BreakpointSite *)> const &callback)
209 BreakpointSiteList::FindInRange (lldb::addr_t lower_bound, lldb::addr_t upper_bound, BreakpointSiteList &bp_site_list) const