Home
last modified time | relevance | path

Searched refs:bp_loc (Results 1 – 12 of 12) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp25 void BreakpointLocationCollection::Add(const BreakpointLocationSP &bp_loc) { in Add() argument
28 FindByIDPair(bp_loc->GetBreakpoint().GetID(), bp_loc->GetID()); in Add()
30 m_break_loc_collection.push_back(bp_loc); in Add()
50 bool operator()(const BreakpointLocationSP &bp_loc) const { in operator ()()
51 return m_break_id == bp_loc->GetBreakpoint().GetID() && in operator ()()
52 m_break_loc_id == bp_loc->GetID(); in operator ()()
H A DBreakpointIDList.cpp176 BreakpointLocation *bp_loc = in FindAndReplaceIDRanges() local
180 &canonical_id_str, bp_id->GetBreakpointID(), bp_loc->GetID()); in FindAndReplaceIDRanges()
263 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
264 if ((bp_loc->GetID() >= start_loc_id) && in FindAndReplaceIDRanges()
265 (bp_loc->GetID() <= end_loc_id)) { in FindAndReplaceIDRanges()
268 bp_loc->GetID()); in FindAndReplaceIDRanges()
275 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
276 if (bp_loc->GetID() <= end_loc_id) { in FindAndReplaceIDRanges()
279 bp_loc->GetID()); in FindAndReplaceIDRanges()
H A DBreakpointLocationList.cpp272 BreakpointLocation *bp_loc = m_locations[idx].get(); in RemoveInvalidLocations() local
273 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations()
280 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
/openbsd/gnu/llvm/lldb/examples/python/
H A Din_call_stack.py10 def in_call_stack(frame, bp_loc, arg_dict, _): argument
/openbsd/gnu/llvm/lldb/examples/functions/
H A Dmain.cpp207 SBBreakpointLocation bp_loc = bp.GetLocationAtIndex(bp_loc_idx); in main() local
209 bp_loc.GetAddress().GetSymbolContext(eSymbolContextEverything)); in main()
/openbsd/gnu/llvm/lldb/source/Target/
H A DThreadPlanStepRange.cpp362 BreakpointLocationSP bp_loc = in SetNextBranchBreakpoint() local
364 if (bp_loc) { in SetNextBranchBreakpoint()
365 BreakpointSiteSP bp_site = bp_loc->GetBreakpointSite(); in SetNextBranchBreakpoint()
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp328 lldb::SBBreakpointLocation bp_loc; in CreateBreakpoint() local
331 bp_loc = bp.GetLocationAtIndex(i); in CreateBreakpoint()
332 if (bp_loc.IsResolved()) in CreateBreakpoint()
336 if (!bp_loc.IsResolved()) in CreateBreakpoint()
337 bp_loc = bp.GetLocationAtIndex(0); in CreateBreakpoint()
338 auto bp_addr = bp_loc.GetAddress(); in CreateBreakpoint()
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp127 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd()
154 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd()
/openbsd/gnu/llvm/clang/utils/
H A Dclangdiag.py100 def setDiagBreakpoint(frame, bp_loc, dict): argument
/openbsd/gnu/llvm/lldb/docs/use/
H A Dpython.rst304 bp_loc. When the breakpoint gets hit, LLDB wraps up the frame object where the
316 automatically have a frame and a bp_loc variable. The variables are pre-loaded
339 def some_unique_and_obscure_function_name (frame, bp_loc):
H A Dpython-reference.rst185 def breakpoint_function_wrapper(frame, bp_loc, internal_dict):
192 def breakpoint_function_wrapper(frame, bp_loc, extra_args, internal_dict):
203 | ``bp_loc`` | `lldb.SBBreakpointLocation` | The breakpoint location that just got hit. Br…
260 > bp_loc.SetEnabled(False)
/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp486 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in IOHandlerActivated()