Home
last modified time | relevance | path

Searched refs:GetNumResolvedLocations (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/load_after_attach/
H A DTestLoadAfterAttach.py40 self.assertEqual(breakpoint1.GetNumResolvedLocations(), 1)
50 self.assertEqual(breakpoint2.GetNumResolvedLocations(), 1)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/this_class_type_mixing/
H A DTestThisClassTypeMixing.py30 self.assertNotEqual(breakpoint.GetNumResolvedLocations(), 0)
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_breakpoint.py33 obj.GetNumResolvedLocations()
/llvm-project-15.0.7/lldb/test/API/functionalities/dlopen_other_executable/
H A DTestDlopenOtherExecutable.py31 self.assertNotEqual(breakpoint.GetNumResolvedLocations(), 0)
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationList.h121 size_t GetNumResolvedLocations() const;
H A DBreakpoint.h413 size_t GetNumResolvedLocations() const;
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpoint.cpp832 size_t Breakpoint::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in Breakpoint
835 return m_locations.GetNumResolvedLocations(); in GetNumResolvedLocations()
839 return GetNumResolvedLocations() > 0; in HasResolvedLocations()
862 const size_t num_resolved_locations = GetNumResolvedLocations(); in GetDescription()
1129 bp.try_emplace("numResolvedLocations", (int64_t)GetNumResolvedLocations()); in GetStatistics()
H A DBreakpointLocationList.cpp179 size_t BreakpointLocationList::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in BreakpointLocationList
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBBreakpoint.h118 size_t GetNumResolvedLocations() const;
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBBreakpoint.i225 GetNumResolvedLocations() const;
/llvm-project-15.0.7/lldb/tools/lldb-test/
H A Dlldb-test.cpp327 P.formatLine("{0} resolved location{1}.", BP->GetNumResolvedLocations(), in dumpState()
328 plural(BP->GetNumResolvedLocations())); in dumpState()
329 if (BP->GetNumResolvedLocations() > 0) in dumpState()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp355 if (dyld_break->GetNumResolvedLocations() != 1) { in SetRendezvousBreakpoint()
360 dyld_break->GetNumResolvedLocations(), in SetRendezvousBreakpoint()
/llvm-project-15.0.7/lldb/test/API/functionalities/return-value/
H A DTestReturnValue.py238 …self.assertTrue(bkpt.GetNumResolvedLocations() > 0, "Got wrong number of locations for {0}".format…
/llvm-project-15.0.7/lldb/source/API/
H A DSBBreakpoint.cpp456 size_t SBBreakpoint::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in SBBreakpoint
464 num_resolved = bkpt_sp->GetNumResolvedLocations(); in GetNumResolvedLocations()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py771 test.assertEquals(expected_resolved_count, bkpt.GetNumResolvedLocations())
775 test.assertEquals(expected_resolved_count, bkpt.GetNumResolvedLocations())
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp315 object.try_emplace("verified", bp.GetNumResolvedLocations() > 0); in CreateBreakpoint()