Searched refs:bp_site_sp (Results 1 - 15 of 15) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp19 // ThreadPlanStepOverBreakpoint: Single steps over a breakpoint bp_site_sp at
122 BreakpointSiteSP bp_site_sp(
125 if (bp_site_sp && bp_site_sp->IsEnabled()) {
126 m_thread.GetProcess()->DisableBreakpointSite(bp_site_sp.get());
163 BreakpointSiteSP bp_site_sp(
166 if (bp_site_sp) {
167 m_thread.GetProcess()->EnableBreakpointSite(bp_site_sp.get());
H A DStopInfo.cpp107 BreakpointSiteSP bp_site_sp(
109 if (bp_site_sp) {
110 if (bp_site_sp->GetNumberOfOwners() == 1) {
111 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0);
117 m_address = bp_site_sp->GetLoadAddress();
125 BreakpointSiteSP bp_site_sp(
127 if (bp_site_sp)
128 return bp_site_sp->ValidForThisThread(&thread);
140 BreakpointSiteSP bp_site_sp(
142 if (bp_site_sp) {
[all...]
H A DThreadPlanCallFunction.cpp288 BreakpointSiteSP bp_site_sp; local
290 bp_site_sp = process_sp->GetBreakpointSiteList().FindByID(break_site_id);
291 if (bp_site_sp) {
292 uint32_t num_owners = bp_site_sp->GetNumberOfOwners();
295 Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
H A DThreadPlanStepRange.cpp403 BreakpointSiteSP bp_site_sp = local
405 if (!bp_site_sp)
407 else if (!bp_site_sp->IsBreakpointAtThisSite(m_next_branch_bp_sp->GetID()))
411 size_t num_owners = bp_site_sp->GetNumberOfOwners();
418 if (!bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint().IsInternal()) {
H A DProcess.cpp1581 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID(break_id); local
1582 if (bp_site_sp) {
1583 if (bp_site_sp->IsEnabled())
1584 error = DisableBreakpointSite(bp_site_sp.get());
1595 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID(break_id); local
1596 if (bp_site_sp) {
1597 if (!bp_site_sp->IsEnabled())
1598 error = EnableBreakpointSite(bp_site_sp.get());
1660 BreakpointSiteSP bp_site_sp; local
1665 bp_site_sp
1696 RemoveOwnerFromBreakpointSite(lldb::user_id_t owner_id, lldb::user_id_t owner_loc_id, BreakpointSiteSP &bp_site_sp) argument
[all...]
H A DStackFrameList.cpp149 BreakpointSiteSP bp_site_sp(
152 if (bp_site_sp) {
153 uint32_t num_owners = bp_site_sp->GetNumberOfOwners();
155 Breakpoint &bp_ref = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
H A DThread.cpp597 BreakpointSiteSP bp_site_sp = local
599 if (bp_site_sp) {
2093 BreakpointSiteSP bp_site_sp = local
2095 if (bp_site_sp && static_cast<break_id_t>(value) == bp_site_sp->GetID())
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp466 lldb::BreakpointSiteSP bp_site_sp; local
468 bp_site_sp = process_sp->GetBreakpointSiteList().FindByAddress(pc);
469 if (bp_site_sp && bp_site_sp->IsEnabled()) {
485 if (bp_site_sp->ValidForThisThread(&thread) ||
488 thread, bp_site_sp->GetID());
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSiteList.h38 /// \param[in] bp_site_sp
43 lldb::break_id_t Add(const lldb::BreakpointSiteSP &bp_site_sp);
H A DBreakpointLocation.h277 /// Set the breakpoint site for this location to \a bp_site_sp.
279 /// \param[in] bp_site_sp
285 bool SetBreakpointSite(lldb::BreakpointSiteSP &bp_site_sp);
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp181 lldb::BreakpointSiteSP bp_site_sp(
184 if (bp_site_sp)
185 return bp_site_sp->GetNumberOfOwners() * 2;
232 lldb::BreakpointSiteSP bp_site_sp(
235 if (bp_site_sp) {
238 bp_site_sp->GetOwnerAtIndex(bp_index));
/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp462 bool BreakpointLocation::SetBreakpointSite(BreakpointSiteSP &bp_site_sp) { argument
463 m_bp_site_sp = bp_site_sp;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp570 BreakpointSiteSP bp_site_sp(
572 if (bp_site_sp) {
573 const size_t num_owners = bp_site_sp->GetNumberOfOwners();
576 bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1819 lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()
1826 if (bp_site_sp &&
1827 bp_site_sp->ValidForThisThread(thread_sp.get())) {
1830 *thread_sp, bp_site_sp->GetID()));
1837 lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()
1840 if (bp_site_sp) {
1847 if (bp_site_sp->ValidForThisThread(thread_sp.get())) {
1850 *thread_sp, bp_site_sp->GetID()));
1901 lldb::BreakpointSiteSP bp_site_sp =
1910 if (bp_site_sp
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2036 lldb::BreakpointSiteSP &bp_site_sp);

Completed in 120 milliseconds