Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationList.h121 size_t GetNumResolvedLocations() const;
H A DBreakpoint.h419 size_t GetNumResolvedLocations() const;
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpoint.cpp837 size_t Breakpoint::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in Breakpoint
840 return m_locations.GetNumResolvedLocations(); in GetNumResolvedLocations()
844 return GetNumResolvedLocations() > 0; in HasResolvedLocations()
867 const size_t num_resolved_locations = GetNumResolvedLocations(); in GetDescription()
1134 bp.try_emplace("numResolvedLocations", (int64_t)GetNumResolvedLocations()); in GetStatistics()
H A DBreakpointLocationList.cpp185 size_t BreakpointLocationList::GetNumResolvedLocations() const { in GetNumResolvedLocations() function in BreakpointLocationList
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBBreakpoint.h118 size_t GetNumResolvedLocations() const;
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBBreakpoint.i225 GetNumResolvedLocations() const;
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp366 if (dyld_break->GetNumResolvedLocations() != 1) { in SetRendezvousBreakpoint()
371 dyld_break->GetNumResolvedLocations(), in SetRendezvousBreakpoint()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/tools/lldb-test/
H A Dlldb-test.cpp374 P.formatLine("{0} resolved location{1}.", BP->GetNumResolvedLocations(), in dumpState()
375 plural(BP->GetNumResolvedLocations())); in dumpState()
376 if (BP->GetNumResolvedLocations() > 0) in dumpState()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py683 test.assertEquals(expected_resolved_count, bkpt.GetNumResolvedLocations())
687 test.assertEquals(expected_resolved_count, bkpt.GetNumResolvedLocations())
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp318 object.try_emplace("verified", bp.GetNumResolvedLocations() > 0); in CreateBreakpoint()