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.cpp33 BreakpointLocationSP bp_loc_sp( in Create() local
36 m_locations.push_back(bp_loc_sp); in Create()
37 m_address_to_location[addr] = bp_loc_sp; in Create()
38 return bp_loc_sp; in Create()
56 BreakpointLocationSP bp_loc_sp = FindByAddress(addr); in FindIDByAddress() local
57 if (bp_loc_sp) { in FindIDByAddress()
58 return bp_loc_sp->GetID(); in FindIDByAddress()
98 BreakpointLocationSP bp_loc_sp; in FindByAddress() local
116 bp_loc_sp = pos->second; in FindByAddress()
119 return bp_loc_sp; in FindByAddress()
[all …]
H A DBreakpointResolverAddress.cpp137 BreakpointLocationSP bp_loc_sp(AddLocation(m_addr)); in SearchCallback()
138 if (bp_loc_sp && !breakpoint.IsInternal()) { in SearchCallback()
140 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
139 BreakpointLocationSP bp_loc_sp(AddLocation(m_addr)); SearchCallback() local
H A DBreakpoint.cpp710 BreakpointLocationSP bp_loc_sp = old_break_locs.GetByIndex(idx); in ModuleReplaced() local
711 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced()
712 bp_loc_sp->GetAddress().CalculateSymbolContext(&old_sc_map[loc_id]); in ModuleReplaced()
718 BreakpointLocationSP bp_loc_sp = new_break_locs.GetByIndex(idx); in ModuleReplaced() local
719 lldb::break_id_t loc_id = bp_loc_sp->GetID(); in ModuleReplaced()
720 bp_loc_sp->GetAddress().CalculateSymbolContext(&new_sc_map[loc_id]); in ModuleReplaced()
1099 lldb::BreakpointLocationSP bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent() local
1103 bp_loc_sp = data->m_locations.GetByIndex(bp_loc_idx); in GetBreakpointLocationAtIndexFromEvent()
1106 return bp_loc_sp; in GetBreakpointLocationAtIndexFromEvent()
H A DBreakpointResolverName.cpp377 BreakpointLocationSP bp_loc_sp(AddLocation(break_addr, &new_location)); in SearchCallback()
378 bp_loc_sp->SetIsReExported(is_reexported); in SearchCallback()
379 if (bp_loc_sp && new_location && !breakpoint.IsInternal()) { in SearchCallback() local
382 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in SearchCallback()
H A DBreakpointResolver.cpp338 BreakpointLocationSP bp_loc_sp(AddLocation(line_start)); in AddLocation() local
339 if (log && bp_loc_sp && !GetBreakpoint()->IsInternal()) { in AddLocation()
341 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose); in AddLocation()
H A DBreakpointSite.cpp33 BreakpointLocationSP bp_loc_sp;
35 BreakpointLocationSP bp_loc_sp; ~BreakpointSite() local
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp115 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetConstituentAtIndex(0); in StoreBPInfo() local
116 if (bp_loc_sp) { in StoreBPInfo()
117 Breakpoint & bkpt = bp_loc_sp->GetBreakpoint(); in StoreBPInfo()
404 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); in PerformAction() local
407 bp_loc_sp->GetDescription(&loc_desc, eDescriptionLevelBrief); in PerformAction()
411 if (!bp_loc_sp->IsEnabled() || in PerformAction()
412 !bp_loc_sp->GetBreakpoint().IsEnabled()) in PerformAction()
418 if (!bp_loc_sp->ValidForThisThread(*thread_sp)) { in PerformAction()
433 bp_loc_sp->GetBreakpoint().GetID()); in PerformAction()
438 bp_loc_sp->GetBreakpoint().EvaluatePrecondition(context); in PerformAction()
[all …]
H A DPlatform.cpp1969 lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetConstituentAtIndex(0)); in GetSoftwareBreakpointTrapOpcode() local
1972 if (bp_loc_sp) { in GetSoftwareBreakpointTrapOpcode()
1973 addr_class = bp_loc_sp->GetAddress().GetAddressClass(); in GetSoftwareBreakpointTrapOpcode()
1975 (bp_loc_sp->GetAddress().GetFileAddress() & 1)) in GetSoftwareBreakpointTrapOpcode()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp363 BreakpointLocationSP bp_loc_sp( in DoExecute() local
367 if (bp_loc_sp) in DoExecute()
368 m_bp_options_vec.push_back(bp_loc_sp->GetLocationOptions()); in DoExecute()
513 BreakpointLocationSP bp_loc_sp( in DoExecute() local
515 if (bp_loc_sp) in DoExecute()
516 bp_loc_sp->ClearCallback(); in DoExecute()
581 BreakpointLocationSP bp_loc_sp; in DoExecute() local
583 bp_loc_sp = bp->FindLocationByID(cur_bp_id.GetLocationID()); in DoExecute()
584 if (!bp_loc_sp) { in DoExecute()
597 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.swig68 PythonObject SWIGBridge::ToSWIGWrapper(lldb::BreakpointLocationSP bp_loc_sp) {
69 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.h95 static PythonObject ToSWIGWrapper(lldb::BreakpointLocationSP bp_loc_sp);
H A DScriptInterpreterPython.cpp1932 const BreakpointLocationSP bp_loc_sp( in BreakpointCallbackFunction() local
1935 if (stop_frame_sp && bp_loc_sp) { in BreakpointCallbackFunction()
1945 bp_loc_sp, bp_option_data->m_extra_args); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6999 BreakpointLocationSP bp_loc_sp = in WindowDelegateDraw() local
7002 if (bp_loc_sp->GetAddress().CalculateSymbolContextLineEntry( in WindowDelegateDraw()
7112 BreakpointLocationSP bp_loc_sp = in WindowDelegateDraw() local
7116 bp_loc_sp->GetAddress().GetFileAddress(); in WindowDelegateDraw()
7476 BreakpointLocationSP bp_loc_sp = in ToggleBreakpointOnSelectedLine() local
7479 if (bp_loc_sp->GetAddress().CalculateSymbolContextLineEntry( in ToggleBreakpointOnSelectedLine()
7520 BreakpointLocationSP bp_loc_sp = in ToggleBreakpointOnSelectedLine() local
7524 bp_loc_sp->GetAddress().GetFileAddress(); in ToggleBreakpointOnSelectedLine()
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3802 lldb::BreakpointLocationSP bp_loc_sp, in LLDBSwigLuaBreakpointCallbackFunction() argument
3805 lldb::SBBreakpointLocation sb_bp_loc(bp_loc_sp); in LLDBSwigLuaBreakpointCallbackFunction()