Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DAddressRangeListImpl.cpp14 AddressRangeListImpl::AddressRangeListImpl() : m_ranges() {} in AddressRangeListImpl() function in AddressRangeListImpl
16 AddressRangeListImpl &
17 AddressRangeListImpl::operator=(const AddressRangeListImpl &rhs) { in operator =()
24 size_t AddressRangeListImpl::GetSize() const { return m_ranges.size(); } in GetSize()
26 void AddressRangeListImpl::Reserve(size_t capacity) { in Reserve()
30 void AddressRangeListImpl::Append(const AddressRange &sb_region) { in Append()
34 void AddressRangeListImpl::Append(const AddressRangeListImpl &list) { in Append()
41 void AddressRangeListImpl::Clear() { m_ranges.clear(); } in Clear()
44 AddressRangeListImpl::GetAddressRangeAtIndex(size_t index) { in GetAddressRangeAtIndex()
50 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 AddressRangeListImpl(const AddressRangeListImpl &rhs) = default;
29 AddressRangeListImpl &operator=(const AddressRangeListImpl &rhs);
37 void Append(const AddressRangeListImpl &list);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAddressRangeList.h17 class AddressRangeListImpl; variable
49 lldb_private::AddressRangeListImpl &ref() const;
51 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()
/freebsd/lib/clang/liblldb/
H A DMakefile169 SRCS+= Core/AddressRangeListImpl.cpp