/openbsd/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointLocationCollection.cpp | 25 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 D | BreakpointIDList.cpp | 176 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 D | BreakpointLocationList.cpp | 272 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 D | in_call_stack.py | 10 def in_call_stack(frame, bp_loc, arg_dict, _): argument
|
/openbsd/gnu/llvm/lldb/examples/functions/ |
H A D | main.cpp | 207 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 D | ThreadPlanStepRange.cpp | 362 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 D | JSONUtils.cpp | 328 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 D | CommandObjectBreakpointCommand.cpp | 127 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 D | clangdiag.py | 100 def setDiagBreakpoint(frame, bp_loc, dict): argument
|
/openbsd/gnu/llvm/lldb/docs/use/ |
H A D | python.rst | 304 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 D | python-reference.rst | 185 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 D | ScriptInterpreterPython.cpp | 486 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in IOHandlerActivated()
|