Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
DBreakpointLocationList.cpp49 …BreakpointLocationSP bp_loc_sp (new BreakpointLocation (bp_loc_id, m_owner, addr, LLDB_INVALID_THR… in Create() local
50 m_locations.push_back (bp_loc_sp); in Create()
51 m_address_to_location[addr] = bp_loc_sp; in Create()
52 return bp_loc_sp; in Create()
74 BreakpointLocationSP bp_loc_sp = FindByAddress (addr); in FindIDByAddress() local
75 if (bp_loc_sp) in FindIDByAddress()
77 return bp_loc_sp->GetID(); in FindIDByAddress()
124 BreakpointLocationSP bp_loc_sp; in FindByAddress() local
146 bp_loc_sp = pos->second; in FindByAddress()
149 return bp_loc_sp; in FindByAddress()
[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()
DBreakpointResolver.cpp180 BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(line_start)); in SetSCMatchesByLine() local
181 if (log && bp_loc_sp && !m_breakpoint->IsInternal()) in SetSCMatchesByLine()
184 bp_loc_sp->GetDescription (&s, lldb::eDescriptionLevelVerbose); in SetSCMatchesByLine()
DBreakpointResolverName.cpp320 … BreakpointLocationSP bp_loc_sp (m_breakpoint->AddLocation(break_addr, &new_location)); in SearchCallback() local
321 bp_loc_sp->SetIsReExported(is_reexported); in SearchCallback()
322 if (bp_loc_sp && new_location && !m_breakpoint->IsInternal()) in SearchCallback()
327 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
DBreakpoint.cpp797 lldb::BreakpointLocationSP bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent() local
802 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx); in GetBreakpointLocationAtIndexFromEvent()
805 return bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent()
DBreakpointSite.cpp42 BreakpointLocationSP bp_loc_sp; in ~BreakpointSite() local
/freebsd-10-stable/contrib/llvm/tools/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()
426 bp_loc_sp->GetDescription(&s, eDescriptionLevelBrief); in PerformAction()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/
DCommandObjectBreakpointCommand.cpp486 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
489 if (bp_loc_sp) in DoExecute()
490 bp_options = bp_loc_sp->GetLocationOptions(); in DoExecute()
655 … BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
656 if (bp_loc_sp) in DoExecute()
657 bp_loc_sp->ClearCallback(); in DoExecute()
757 … BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID())); in DoExecute() local
758 if (bp_loc_sp) in DoExecute()
759 bp_options = bp_loc_sp->GetOptionsNoCreate(); in DoExecute()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
DBreakpointLocationCollection.h40 Add (const lldb::BreakpointLocationSP& bp_loc_sp);
DBreakpointLocationList.h253 RemoveLocation (const lldb::BreakpointLocationSP &bp_loc_sp);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
DSBThread.cpp226 BreakpointLocationSP bp_loc_sp (bp_site_sp->GetOwnerAtIndex (bp_index)); in GetStopReasonDataAtIndex() local
227 if (bp_loc_sp) in GetStopReasonDataAtIndex()
232 return bp_loc_sp->GetID(); in GetStopReasonDataAtIndex()
237 return bp_loc_sp->GetBreakpoint().GetID(); in GetStopReasonDataAtIndex()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DScriptInterpreter.h90 const lldb::BreakpointLocationSP &bp_loc_sp);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
DScriptInterpreterPython.cpp1801 const BreakpointLocationSP bp_loc_sp (breakpoint_sp->FindLocationByID (break_loc_id)); in BreakpointCallbackFunction() local
1803 if (stop_frame_sp && bp_loc_sp) in BreakpointCallbackFunction()
1811 bp_loc_sp); in BreakpointCallbackFunction()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DIOHandler.cpp4660 BreakpointLocationSP bp_loc_sp = bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() local
4662 … if (bp_loc_sp->GetAddress().CalculateSymbolContextLineEntry (bp_loc_line_entry)) in WindowDelegateDraw()
4769 BreakpointLocationSP bp_loc_sp = bp_sp->GetLocationAtIndex(bp_loc_idx); in WindowDelegateDraw() local
4771 const lldb::addr_t file_addr = bp_loc_sp->GetAddress().GetFileAddress(); in WindowDelegateDraw()