/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBBreakpoint.i | 228 GetNumLocations() const; 272 return int(self.sbbreakpoint.GetNumLocations()) 300 return self.GetNumLocations() 307 …num_locations = property(GetNumLocations, None, doc='''A read only property that returns the count…
|
/openbsd/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointResolverAddress.cpp | 97 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpoint() 110 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpointInModules() 123 if (breakpoint.GetNumLocations() == 0) { in SearchCallback()
|
H A D | BreakpointIDList.cpp | 174 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges() 258 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges()
|
H A D | Breakpoint.cpp | 847 size_t Breakpoint::GetNumLocations() const { return m_locations.GetSize(); } in GetNumLocations() function in Breakpoint 866 const size_t num_locations = GetNumLocations(); in GetDescription() 1133 bp.try_emplace("numLocations", (int64_t)GetNumLocations()); in GetStatistics()
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbutil.py | 680 test.assertEquals(expected_locations, bkpt.GetNumLocations()) 685 expected_resolved_count = bkpt.GetNumLocations() 929 test.assertTrue(breakpoint.GetNumLocations() > 0, 952 test.assertTrue(breakpoint.GetNumLocations() > 0, 974 test.assertTrue(breakpoint.GetNumLocations() > 0, 998 test.assertTrue(breakpoint.GetNumLocations() > 0,
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBBreakpoint.h | 120 size_t GetNumLocations() const;
|
/openbsd/gnu/llvm/lldb/examples/python/ |
H A D | jump.py | 88 num_locations = breakpoint.GetNumLocations()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBBreakpoint.cpp | 469 size_t SBBreakpoint::GetNumLocations() const { in GetNumLocations() function in SBBreakpoint 477 num_locs = bkpt_sp->GetNumLocations(); in GetNumLocations() 530 const size_t num_locations = bkpt_sp->GetNumLocations(); in GetDescription()
|
/openbsd/gnu/llvm/lldb/examples/functions/ |
H A D | main.cpp | 204 const size_t num_locations = bp.GetNumLocations(); in main()
|
/openbsd/gnu/llvm/lldb/tools/lldb-test/ |
H A D | lldb-test.cpp | 370 P.formatLine("{0} location{1}.", BP->GetNumLocations(), in dumpState() 371 plural(BP->GetNumLocations())); in dumpState() 372 if (BP->GetNumLocations() > 0) in dumpState() 378 for (size_t l = 0, le = BP->GetNumLocations(); l < le; ++l) { in dumpState()
|
/openbsd/gnu/llvm/lldb/include/lldb/Breakpoint/ |
H A D | Breakpoint.h | 431 size_t GetNumLocations() const;
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectProcess.cpp | 631 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute() 694 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute()
|
H A D | CommandObjectBreakpoint.cpp | 747 if (bp_sp->GetNumLocations() == 0 && break_type != eSetTypeException) { in DoExecute() 2538 const size_t num_locations = breakpoint->GetNumLocations(); in VerifyIDs()
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 5454 item.Resize(breakpoint->GetNumLocations(), breakpoint_location_tree_item); in TreeDelegateGenerateChildren() 5455 for (size_t i = 0; i < breakpoint->GetNumLocations(); i++) { in TreeDelegateGenerateChildren() 6975 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 7087 const size_t num_bps_locs = bp_sp->GetNumLocations(); in WindowDelegateDraw() 7450 const size_t num_bps_locs = bp_sp->GetNumLocations(); in ToggleBreakpointOnSelectedLine() 7494 const size_t num_bps_locs = bp_sp->GetNumLocations(); in ToggleBreakpointOnSelectedLine()
|
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/ |
H A D | JSONUtils.cpp | 329 const auto num_locs = bp.GetNumLocations(); in CreateBreakpoint()
|