Home
last modified time | relevance | path

Searched refs:GetNumLocations (Results 1 – 15 of 15) sorted by relevance

/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBBreakpoint.i228 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 DBreakpointResolverAddress.cpp97 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpoint()
110 else if (GetBreakpoint()->GetNumLocations() == 0) in ResolveBreakpointInModules()
123 if (breakpoint.GetNumLocations() == 0) { in SearchCallback()
H A DBreakpointIDList.cpp174 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges()
258 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges()
H A DBreakpoint.cpp847 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 Dlldbutil.py680 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 DSBBreakpoint.h120 size_t GetNumLocations() const;
/openbsd/gnu/llvm/lldb/examples/python/
H A Djump.py88 num_locations = breakpoint.GetNumLocations()
/openbsd/gnu/llvm/lldb/source/API/
H A DSBBreakpoint.cpp469 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 Dmain.cpp204 const size_t num_locations = bp.GetNumLocations(); in main()
/openbsd/gnu/llvm/lldb/tools/lldb-test/
H A Dlldb-test.cpp370 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 DBreakpoint.h431 size_t GetNumLocations() const;
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectProcess.cpp631 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute()
694 size_t num_locations = bp_sp->GetNumLocations(); in DoExecute()
H A DCommandObjectBreakpoint.cpp747 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 DIOHandlerCursesGUI.cpp5454 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 DJSONUtils.cpp329 const auto num_locs = bp.GetNumLocations(); in CreateBreakpoint()