Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp38 return bp_loc_sp; in Create()
57 if (bp_loc_sp) { in FindIDByAddress()
58 return bp_loc_sp->GetID(); in FindIDByAddress()
116 bp_loc_sp = pos->second; in FindByAddress()
119 return bp_loc_sp; in FindByAddress()
141 return bp_loc_sp; in GetByIndex()
150 return bp_loc_sp; in GetByIndex()
214 if (!bp_loc_sp) { in AddLocation()
216 if (bp_loc_sp) { in AddLocation()
226 return bp_loc_sp; in AddLocation()
[all …]
H A DBreakpointResolverAddress.cpp137 BreakpointLocationSP bp_loc_sp(AddLocation(m_addr)); in SearchCallback() local
138 if (bp_loc_sp && !breakpoint.IsInternal()) { in SearchCallback()
140 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
H A DBreakpoint.cpp713 BreakpointLocationSP bp_loc_sp = old_break_locs.GetByIndex(idx); in ModuleReplaced() local
714 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced()
715 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced()
721 BreakpointLocationSP bp_loc_sp = new_break_locs.GetByIndex(idx); in ModuleReplaced() local
722 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced()
723 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
1103 lldb::BreakpointLocationSP bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent() local
1107 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx); in GetBreakpointLocationAtIndexFromEvent()
1110 return bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent()
H A DBreakpointResolverName.cpp377 BreakpointLocationSP bp_loc_sp(AddLocation(break_addr, &new_location)); in SearchCallback() local
378 bp_loc_sp->SetIsReExported(is_reexported); in SearchCallback()
379 if (bp_loc_sp && new_location && !breakpoint.IsInternal()) { in SearchCallback()
382 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
H A DBreakpointResolver.cpp329 BreakpointLocationSP bp_loc_sp(AddLocation(line_start)); in AddLocation() local
330 if (log && bp_loc_sp && !GetBreakpoint()->IsInternal()) { in AddLocation()
332 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in AddLocation()
H A DBreakpointSite.cpp33 BreakpointLocationSP bp_loc_sp; in ~BreakpointSite() local
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp116 if (bp_loc_sp) { in StoreBPInfo()
117 Breakpoint & bkpt = bp_loc_sp->GetBreakpoint(); in StoreBPInfo()
411 if (!bp_loc_sp->IsEnabled() || in PerformAction()
412 !bp_loc_sp->GetBreakpoint().IsEnabled()) in PerformAction()
433 bp_loc_sp->GetBreakpoint().GetID()); in PerformAction()
485 bp_loc_sp->UndoBumpHitCount(); in PerformAction()
496 if (!bp_loc_sp->IgnoreCountShouldStop()) { in PerformAction()
508 if (bp_loc_sp->IsAutoContinue()) in PerformAction()
530 if (!bp_loc_sp->IsCallbackSynchronous()) { in PerformAction()
550 if (callback_says_stop && bp_loc_sp && in PerformAction()
[all …]
H A DPlatform.cpp2017 lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetConstituentAtIndex(0)); in GetSoftwareBreakpointTrapOpcode() local
2020 if (bp_loc_sp) { in GetSoftwareBreakpointTrapOpcode()
2021 addr_class = bp_loc_sp->GetAddress().GetAddressClass(); in GetSoftwareBreakpointTrapOpcode()
2023 (bp_loc_sp->GetAddress().GetFileAddress() & 1)) in GetSoftwareBreakpointTrapOpcode()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp375 BreakpointLocationSP bp_loc_sp( in DoExecute() local
379 if (bp_loc_sp) in DoExecute()
380 m_bp_options_vec.push_back(bp_loc_sp->GetLocationOptions()); in DoExecute()
537 BreakpointLocationSP bp_loc_sp( in DoExecute() local
539 if (bp_loc_sp) in DoExecute()
540 bp_loc_sp->ClearCallback(); in DoExecute()
617 BreakpointLocationSP bp_loc_sp; in DoExecute() local
619 bp_loc_sp = bp->FindLocationByID(cur_bp_id.GetLocationID()); in DoExecute()
620 if (!bp_loc_sp) { in DoExecute()
633 if (bp_loc_sp) in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig9 lldb::BreakpointLocationSP bp_loc_sp,
12 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DSWIGLuaBridge.h24 lldb::BreakpointLocationSP bp_loc_sp,
H A DLua.cpp80 lldb::BreakpointLocationSP bp_loc_sp, in CallBreakpointCallback() argument
87 m_lua_state, stop_frame_sp, bp_loc_sp, extra_args_impl); in CallBreakpointCallback()
H A DLua.h38 lldb::BreakpointLocationSP bp_loc_sp,
H A DScriptInterpreterLua.cpp280 BreakpointLocationSP bp_loc_sp(breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction() local
289 baton, stop_frame_sp, bp_loc_sp, bp_option_data->m_extra_args_sp); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig72 PythonObject SWIGBridge::ToSWIGWrapper(lldb::BreakpointLocationSP bp_loc_sp) {
73 return ToSWIGHelper(new lldb::SBBreakpointLocation(std::move(bp_loc_sp)),
H A Dpython-wrapper.swig22 const lldb::BreakpointLocationSP &bp_loc_sp,
26 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp);
41 PythonObject bp_loc_arg = SWIGBridge::ToSWIGWrapper(bp_loc_sp);
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h33 void Add(const lldb::BreakpointLocationSP &bp_loc_sp);
H A DBreakpointLocationList.h186 bool RemoveLocation(const lldb::BreakpointLocationSP &bp_loc_sp);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp243 BreakpointLocationSP bp_loc_sp( in GetStopReasonDataAtIndex() local
245 if (bp_loc_sp) { in GetStopReasonDataAtIndex()
248 return bp_loc_sp->GetID(); in GetStopReasonDataAtIndex()
251 return bp_loc_sp->GetBreakpoint().GetID(); in GetStopReasonDataAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h94 static PythonObject ToSWIGWrapper(lldb::BreakpointLocationSP bp_loc_sp);
H A DScriptInterpreterPython.cpp2038 const BreakpointLocationSP bp_loc_sp( in BreakpointCallbackFunction() local
2041 if (stop_frame_sp && bp_loc_sp) { in BreakpointCallbackFunction()
2051 bp_loc_sp, bp_option_data->m_extra_args); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6998 BreakpointLocationSP bp_loc_sp = in WindowDelegateDraw() local
7001 if (bp_loc_sp->GetAddress().CalculateSymbolContextLineEntry( in WindowDelegateDraw()
7111 BreakpointLocationSP bp_loc_sp = in WindowDelegateDraw() local
7115 bp_loc_sp->GetAddress().GetFileAddress(); in WindowDelegateDraw()
7475 BreakpointLocationSP bp_loc_sp = in ToggleBreakpointOnSelectedLine() local
7478 if (bp_loc_sp->GetAddress().CalculateSymbolContextLineEntry( in ToggleBreakpointOnSelectedLine()
7519 BreakpointLocationSP bp_loc_sp = in ToggleBreakpointOnSelectedLine() local
7523 bp_loc_sp->GetAddress().GetFileAddress(); in ToggleBreakpointOnSelectedLine()
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3743 lldb::BreakpointLocationSP bp_loc_sp, in LLDBSwigLuaBreakpointCallbackFunction() argument
3746 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp); in LLDBSwigLuaBreakpointCallbackFunction()