Home
last modified time | relevance | path

Searched refs:AddressRangeListImpl (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DAddressRangeListImpl.cpp14 AddressRangeListImpl::AddressRangeListImpl() : m_ranges() {} in AddressRangeListImpl() function in AddressRangeListImpl
16 size_t AddressRangeListImpl::GetSize() const { return m_ranges.size(); } in GetSize()
18 void AddressRangeListImpl::Reserve(size_t capacity) { in Reserve()
22 void AddressRangeListImpl::Append(const AddressRange &sb_region) { in Append()
26 void AddressRangeListImpl::Append(const AddressRangeListImpl &list) { in Append()
33 void AddressRangeListImpl::Clear() { m_ranges.clear(); } in Clear()
36 AddressRangeListImpl::GetAddressRangeAtIndex(size_t index) { in GetAddressRangeAtIndex()
42 AddressRanges &AddressRangeListImpl::ref() { return m_ranges; } in ref()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressRangeListImpl.h23 class AddressRangeListImpl {
25 AddressRangeListImpl();
27 explicit AddressRangeListImpl(AddressRanges ranges) in AddressRangeListImpl() function
36 void Append(const AddressRangeListImpl &list);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAddressRangeList.h17 class AddressRangeListImpl; variable
50 lldb_private::AddressRangeListImpl &ref() const;
52 std::unique_ptr<lldb_private::AddressRangeListImpl> m_opaque_up;
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBAddressRangeList.cpp24 : m_opaque_up(std::make_unique<AddressRangeListImpl>()) { in SBAddressRangeList()
29 : m_opaque_up(std::make_unique<AddressRangeListImpl>(*rhs.m_opaque_up)) { in SBAddressRangeList()
96 lldb_private::AddressRangeListImpl &SBAddressRangeList::ref() const { in ref()
H A DSBFunction.cpp171 ranges.ref() = AddressRangeListImpl(m_opaque_ptr->GetAddressRanges()); in GetRanges()
/freebsd/lib/clang/liblldb/
H A DMakefile181 SRCS+= Core/AddressRangeListImpl.cpp