Home
last modified time | relevance | path

Searched refs:bp_loc_sp (Results 1 – 16 of 16) sorted by relevance

/external/lldb/source/Breakpoint/
DBreakpointLocationList.cpp44 BreakpointLocationSP bp_loc_sp (new BreakpointLocation (bp_loc_id, m_owner, addr)); in Create() local
45 m_locations.push_back (bp_loc_sp); in Create()
46 m_address_to_location[addr] = bp_loc_sp; in Create()
47 return bp_loc_sp; in Create()
69 BreakpointLocationSP bp_loc_sp = FindByAddress (addr); in FindIDByAddress() local
70 if (bp_loc_sp) in FindIDByAddress()
72 return bp_loc_sp->GetID(); in FindIDByAddress()
80 BreakpointLocationSP bp_loc_sp; in FindByID() local
87 bp_loc_sp = m_locations[idx]; in FindByID()
89 return bp_loc_sp; in FindByID()
[all …]
DBreakpointResolverAddress.cpp81 BreakpointLocationSP bp_loc_sp(m_breakpoint->AddLocation(m_addr)); in SearchCallback() local
82 if (bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback()
85 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
DBreakpointResolverFileRegex.cpp85 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start)); in SearchCallback() local
86 if (log && bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback()
89 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
DBreakpointResolverFileLine.cpp198 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start)); in SearchCallback() local
199 if (log && bp_loc_sp && !m_breakpoint->IsInternal()) in SearchCallback()
202 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
DBreakpointResolverName.cpp305 … BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(break_addr, &new_location)); in SearchCallback() local
306 if (bp_loc_sp && new_location && !m_breakpoint->IsInternal()) in SearchCallback()
311 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
DBreakpoint.cpp785 lldb::BreakpointLocationSP bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent() local
790 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx); in GetBreakpointLocationAtIndexFromEvent()
793 return bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent()
DBreakpointSite.cpp42 BreakpointLocationSP bp_loc_sp; in ~BreakpointSite() local
/external/lldb/source/Target/
DStopInfo.cpp149 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0); in StoreBPInfo() local
150 if (bp_loc_sp) in StoreBPInfo()
152 m_break_id = bp_loc_sp->GetBreakpoint().GetID(); in StoreBPInfo()
153 m_was_one_shot = bp_loc_sp->GetBreakpoint().IsOneShot(); in StoreBPInfo()
382 … lldb::BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(j); in PerformAction() local
383 if (bp_loc_sp->GetBreakpoint().IsInternal()) in PerformAction()
413 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); in PerformAction() local
416 if (!bp_loc_sp->IsEnabled() || !bp_loc_sp->GetBreakpoint().IsEnabled()) in PerformAction()
421 if (!bp_loc_sp->ValidForThisThread(thread_sp.get())) in PerformAction()
427 if (bp_loc_sp->GetConditionText() != NULL) in PerformAction()
[all …]
/external/lldb/source/Commands/
DCommandObjectBreakpointCommand.cpp564 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
567 if (bp_loc_sp) in DoExecute()
568 bp_options = bp_loc_sp->GetLocationOptions(); in DoExecute()
733 … BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
734 if (bp_loc_sp) in DoExecute()
735 bp_loc_sp->ClearCallback(); in DoExecute()
835 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
836 if (bp_loc_sp) in DoExecute()
837 bp_options = bp_loc_sp->GetOptionsNoCreate(); in DoExecute()
/external/lldb/include/lldb/Breakpoint/
DBreakpointLocationCollection.h40 Add (const lldb::BreakpointLocationSP& bp_loc_sp);
DBreakpointLocationList.h252 RemoveLocation (const lldb::BreakpointLocationSP &bp_loc_sp);
/external/lldb/source/API/
DSBThread.cpp225 BreakpointLocationSP bp_loc_sp (bp_site_sp->GetOwnerAtIndex (bp_index)); in GetStopReasonDataAtIndex() local
226 if (bp_loc_sp) in GetStopReasonDataAtIndex()
231 return bp_loc_sp->GetID(); in GetStopReasonDataAtIndex()
236 return bp_loc_sp->GetBreakpoint().GetID(); in GetStopReasonDataAtIndex()
/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp401 lldb::BreakpointLocationSP bp_loc_sp (bp_site->GetOwnerAtIndex (0)); in GetSoftwareBreakpointTrapOpcode() local
402 if (bp_loc_sp) in GetSoftwareBreakpointTrapOpcode()
403 … bp_is_thumb = bp_loc_sp->GetAddress().GetAddressClass () == eAddressClassCodeAlternateISA; in GetSoftwareBreakpointTrapOpcode()
/external/lldb/include/lldb/Interpreter/
DScriptInterpreter.h90 const lldb::BreakpointLocationSP &bp_loc_sp);
/external/lldb/scripts/Python/
Dpython-wrapper.swig215 const lldb::BreakpointLocationSP& bp_loc_sp
219 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp);
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp2242 const BreakpointLocationSP bp_loc_sp (breakpoint_sp->FindLocationByID (break_loc_id)); in BreakpointCallbackFunction() local
2244 if (stop_frame_sp && bp_loc_sp) in BreakpointCallbackFunction()
2252 bp_loc_sp); in BreakpointCallbackFunction()