| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | ThreadPlanStepOverBreakpoint.cpp | 114 m_process.GetBreakpointSiteList().FindByAddress(m_breakpoint_addr)); in DoWillResume() 152 m_process.GetBreakpointSiteList().FindByAddress(m_breakpoint_addr)); in ReenableBreakpointSite()
|
| H A D | Thread.cpp | 640 GetProcess()->GetBreakpointSiteList().FindByAddress(thread_pc); in SetupForResume() 1905 GetProcess()->GetBreakpointSiteList().FindByAddress(pc); in IsStillAtLastBreakpointHit()
|
| H A D | StopInfo.cpp | 913 thread_sp->CalculateTarget()->GetWatchpointList().FindByAddress( in PerformAction()
|
| H A D | Target.cpp | 856 WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr); in CreateWatchpoint()
|
| H A D | Process.cpp | 1676 bp_site_sp = m_breakpoint_site_list.FindByAddress(load_addr); in CreateBreakpointSite()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| H A D | StopInfoMachException.cpp | 496 target->GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code); in GetStopInfoForHardwareBP() 511 process_sp->GetBreakpointSiteList().FindByAddress( in GetStopInfoForHardwareBP() 681 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException() 724 wp_sp = target->GetWatchpointList().FindByAddress( in CreateStopReasonWithMachException() 758 bp_site_sp = process_sp->GetBreakpointSiteList().FindByAddress(pc); in CreateStopReasonWithMachException()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | DNBBreakpoint.h | 124 DNBBreakpoint *FindByAddress(nub_addr_t addr); 125 const DNBBreakpoint *FindByAddress(nub_addr_t addr) const;
|
| H A D | DNBBreakpoint.cpp | 69 DNBBreakpoint *DNBBreakpointList::FindByAddress(nub_addr_t addr) { in FindByAddress() function in DNBBreakpointList 77 const DNBBreakpoint *DNBBreakpointList::FindByAddress(nub_addr_t addr) const { in FindByAddress() function in DNBBreakpointList
|
| H A D | ChangeLog | 738 FindByAddress().
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointLocationList.cpp | 56 BreakpointLocationSP bp_loc_sp = FindByAddress(addr); in FindIDByAddress() 96 BreakpointLocationList::FindByAddress(const Address &addr) const { in FindByAddress() function in BreakpointLocationList 213 BreakpointLocationSP bp_loc_sp(FindByAddress(addr)); in AddLocation()
|
| H A D | BreakpointSiteList.cpp | 51 BreakpointSiteSP bp = FindByAddress(addr); in FindIDByAddress() 132 BreakpointSiteSP BreakpointSiteList::FindByAddress(lldb::addr_t addr) { in FindByAddress() function in BreakpointSiteList
|
| H A D | WatchpointList.cpp | 52 const WatchpointSP WatchpointList::FindByAddress(lldb::addr_t addr) const { in FindByAddress() function in WatchpointList 122 WatchpointSP wp_sp = FindByAddress(addr); in FindIDByAddress()
|
| H A D | Breakpoint.cpp | 268 return m_locations.FindByAddress(addr); in FindLocationByAddress()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointSiteList.h | 57 lldb::BreakpointSiteSP FindByAddress(lldb::addr_t addr);
|
| H A D | BreakpointLocationList.h | 49 const lldb::BreakpointLocationSP FindByAddress(const Address &addr) const;
|
| H A D | WatchpointList.h | 70 const lldb::WatchpointSP FindByAddress(lldb::addr_t addr) const;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindows.cpp | 384 BreakpointSiteSP site(GetBreakpointSiteList().FindByAddress(pc)); in RefreshStateAfterStop() 453 BreakpointSiteSP site(GetBreakpointSiteList().FindByAddress(pc)); in RefreshStateAfterStop()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 1715 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress( in SetThreadStopInfo() 1731 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress( in SetThreadStopInfo() 1765 GetTarget().GetWatchpointList().FindByAddress(wp_hit_addr); in SetThreadStopInfo() 1767 wp_sp = GetTarget().GetWatchpointList().FindByAddress(wp_addr); in SetThreadStopInfo() 1816 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(pc); in SetThreadStopInfo() 1838 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress( in SetThreadStopInfo() 2199 GetTarget().GetWatchpointList().FindByAddress(wp_addr); in SetThreadStopInfo()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachThread.cpp | 367 return m_process->Breakpoints().FindByAddress(GetPC()); in CurrentBreakpoint()
|
| H A D | MachProcess.mm | 1843 DNBBreakpoint *bp = m_breakpoints.FindByAddress(addr); 1870 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); 1918 DNBBreakpoint *bp = m_breakpoints.FindByAddress(addr); 2064 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); 2109 DNBBreakpoint *bp = m_breakpoints.FindByAddress(addr); 2182 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm64/ |
| H A D | DNBArchImplARM64.cpp | 570 m_thread->Process()->Breakpoints().FindByAddress(pc); in NotifyException()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/i386/ |
| H A D | DNBArchImplI386.cpp | 683 m_thread->Process()->Breakpoints().FindByAddress(pc); in NotifyException()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/x86_64/ |
| H A D | DNBArchImplX86_64.cpp | 639 m_thread->Process()->Breakpoints().FindByAddress(pc); in NotifyException()
|