Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/lang/cpp/this_class_type_mixing/
DTestThisClassTypeMixing.py32 self.assertNotEqual(breakpoint.GetNumResolvedLocations(), 0)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_breakpoint.py33 obj.GetNumResolvedLocations()
/external/llvm-project/lldb/test/API/functionalities/dlopen_other_executable/
DTestDlopenOtherExecutable.py32 self.assertNotEqual(breakpoint.GetNumResolvedLocations(), 0)
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointLocationList.h121 size_t GetNumResolvedLocations() const;
DBreakpoint.h408 size_t GetNumResolvedLocations() const;
/external/llvm-project/lldb/include/lldb/API/
DSBBreakpoint.h118 size_t GetNumResolvedLocations() const;
/external/llvm-project/lldb/source/Breakpoint/
DBreakpoint.cpp851 size_t Breakpoint::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in Breakpoint
854 return m_locations.GetNumResolvedLocations(); in GetNumResolvedLocations()
858 return GetNumResolvedLocations() > 0; in HasResolvedLocations()
881 const size_t num_resolved_locations = GetNumResolvedLocations(); in GetDescription()
DBreakpointLocationList.cpp180 size_t BreakpointLocationList::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in BreakpointLocationList
/external/llvm-project/lldb/bindings/interface/
DSBBreakpoint.i225 GetNumResolvedLocations() const;
/external/llvm-project/lldb/source/API/
DSBBreakpoint.cpp467 size_t SBBreakpoint::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in SBBreakpoint
469 GetNumResolvedLocations); in GetNumResolvedLocations()
476 num_resolved = bkpt_sp->GetNumResolvedLocations(); in GetNumResolvedLocations()
1033 LLDB_REGISTER_METHOD_CONST(size_t, SBBreakpoint, GetNumResolvedLocations, in RegisterMethods()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp358 if (dyld_break->GetNumResolvedLocations() != 1) { in SetRendezvousBreakpoint()
363 dyld_break->GetNumResolvedLocations(), in SetRendezvousBreakpoint()
/external/llvm-project/lldb/test/API/functionalities/return-value/
DTestReturnValue.py233 self.assertTrue(bkpt.GetNumResolvedLocations() > 0)
/external/llvm-project/lldb/tools/lldb-test/
Dlldb-test.cpp322 P.formatLine("{0} resolved location{1}.", BP->GetNumResolvedLocations(), in dumpState()
323 plural(BP->GetNumResolvedLocations())); in dumpState()
324 if (BP->GetNumResolvedLocations() > 0) in dumpState()
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp294 object.try_emplace("verified", bp.GetNumResolvedLocations() > 0); in CreateBreakpoint()