Searched defs:AddressRange (Results 1 - 5 of 5) sorted by relevance
/external/lldb/source/Core/ |
H A D | AddressRange.cpp | 1 //===-- AddressRange.cpp ----------------------------------------*- C++ -*-===// 10 #include "lldb/Core/AddressRange.h" 19 AddressRange::AddressRange () : function in class:AddressRange 25 AddressRange::AddressRange (addr_t file_addr, addr_t byte_size, const SectionList *section_list) : function in class:AddressRange 31 AddressRange::AddressRange (const lldb::SectionSP §ion, addr_t offset, addr_t byte_size) : function in class:AddressRange 37 AddressRange::AddressRange (cons function in class:AddressRange [all...] |
H A D | Stream.cpp | 171 Stream::AddressRange(uint64_t lo_addr, uint64_t hi_addr, uint32_t addr_size, const char *prefix, const char *suffix) function in class:Stream
|
/external/lldb/include/lldb/Core/ |
H A D | AddressRange.h | 1 //===-- AddressRange.h ------------------------------------------*- C++ -*-===// 18 /// @class AddressRange AddressRange.h "lldb/Core/AddressRange.h" 21 class AddressRange class in namespace:lldb_private 30 AddressRange (); 48 AddressRange (const lldb::SectionSP §ion, lldb::addr_t offset, lldb::addr_t byte_size); 65 AddressRange (lldb::addr_t file_addr, lldb::addr_t byte_size, const SectionList *section_list = NULL); 79 AddressRange (const Address& so_addr, lldb::addr_t byte_size); 86 ~AddressRange (); [all...] |
/external/google-breakpad/src/common/windows/ |
H A D | omap_internal.h | 66 struct AddressRange { struct in namespace:google_breakpad 70 AddressRange() : rva(0), length(0) { } function in struct:google_breakpad::AddressRange 71 AddressRange(DWORD rva, DWORD length) : rva(rva), length(length) { } function in struct:google_breakpad::AddressRange 78 int Compare(const AddressRange& rhs) const; 79 bool operator<(const AddressRange& rhs) const { return Compare(rhs) == -1; } 80 bool operator>(const AddressRange& rhs) const { return Compare(rhs) == 1; } 83 bool operator==(const AddressRange& rhs) const { 86 bool operator!=(const AddressRange& rhs) const { return !((*this) == rhs); } 89 typedef std::vector<AddressRange> AddressRangeVector;
|
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugFrame.cpp | 241 uint64_t InitialLocation, uint64_t AddressRange, 244 InitialLocation(InitialLocation), AddressRange(AddressRange), 257 (uint32_t)InitialLocation + (uint32_t)AddressRange); 268 uint64_t AddressRange; member in class:__anon10514::FDE 483 uint64_t AddressRange = Data.getAddress(&Offset); 486 InitialLocation, AddressRange, 240 FDE(uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset, uint64_t InitialLocation, uint64_t AddressRange, CIE *Cie) argument
|
Completed in 1280 milliseconds