Searched defs:bp_site_sp (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp443 lldb::BreakpointSiteSP bp_site_sp; local
445 bp_site_sp = process_sp->GetBreakpointSiteList().FindByAddress(pc);
446 if (bp_site_sp && bp_site_sp->IsEnabled())
457 if (bp_site_sp->ValidForThisThread (&thread))
458 return StopInfo::CreateStopReasonWithBreakpointSiteID (thread, bp_site_sp->GetID());
/external/lldb/source/Target/
H A DThreadPlanCallFunction.cpp400 BreakpointSiteSP bp_site_sp; local
402 bp_site_sp = process_sp->GetBreakpointSiteList().FindByID(break_site_id);
403 if (bp_site_sp)
405 uint32_t num_owners = bp_site_sp->GetNumberOfOwners();
409 Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint();
H A DThreadPlanStepRange.cpp403 BreakpointSiteSP bp_site_sp = m_thread.GetProcess()->GetBreakpointSiteList().FindByID(bp_site_id); local
404 if (!bp_site_sp)
406 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.cpp2020 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id); local
2021 if (bp_site_sp)
2023 if (bp_site_sp->IsEnabled())
2024 error = DisableBreakpointSite (bp_site_sp.get());
2038 BreakpointSiteSP bp_site_sp = m_breakpoint_site_list.FindByID (break_id); local
2039 if (bp_site_sp)
2041 if (!bp_site_sp->IsEnabled())
2042 error = EnableBreakpointSite (bp_site_sp.get());
2057 BreakpointSiteSP bp_site_sp; local
2062 bp_site_sp
2089 RemoveOwnerFromBreakpointSite(lldb::user_id_t owner_id, lldb::user_id_t owner_loc_id, BreakpointSiteSP &bp_site_sp) argument
[all...]
H A DThread.cpp569 BreakpointSiteSP bp_site_sp = GetProcess()->GetBreakpointSiteList().FindByAddress(reg_ctx_sp->GetPC()); local
570 if (bp_site_sp)
1981 BreakpointSiteSP bp_site_sp = GetProcess()->GetBreakpointSiteList().FindByAddress(pc); local
1982 if (bp_site_sp && value == bp_site_sp->GetID())
/external/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp502 BreakpointLocation::SetBreakpointSite (BreakpointSiteSP& bp_site_sp) argument
504 m_bp_site_sp = bp_site_sp;
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1607 lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(pc); local
1608 if (bp_site_sp)
1614 if (bp_site_sp->ValidForThisThread (thread_sp.get()))
1616 thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->GetID()));
1658 lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(pc); local
1660 if (bp_site_sp)
1665 if (bp_site_sp->ValidForThisThread (thread_sp.get()))
1667 thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->GetID()));

Completed in 600 milliseconds