Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DVMRange.cpp38 DumpAddressRange(s, offset + GetBaseAddress(), offset + GetEndAddress(), in Dump()
44 lhs.GetEndAddress() == rhs.GetEndAddress(); in operator ==()
56 return lhs.GetEndAddress() < rhs.GetEndAddress(); in operator <()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DVMRange.h65 lldb::addr_t GetEndAddress() const { return GetBaseAddress() + m_byte_size; } in GetEndAddress() function
70 return (GetBaseAddress() <= addr) && (addr < GetEndAddress()); in Contains()
75 lldb::addr_t range_end = range.GetEndAddress(); in Contains()
76 return (GetBaseAddress() <= range_end) && (range_end <= GetEndAddress()); in Contains()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBLineEntry.i55 GetEndAddress () const;
97 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
H A DSBFunction.i78 GetEndAddress ();
122 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
H A DSBSymbol.i50 GetEndAddress ();
88 …end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object t…
H A DSBModule.i19 symEA = symbol.GetEndAddress().GetFileAddress()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBFunction.h45 lldb::SBAddress GetEndAddress();
H A DSBLineEntry.h30 lldb::SBAddress GetEndAddress() const;
H A DSBSymbol.h58 SBAddress GetEndAddress();
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dscripted_step.py165 end_address = cur_line_entry.GetEndAddress()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBLineEntry.cpp59 SBAddress SBLineEntry::GetEndAddress() const { in GetEndAddress() function in SBLineEntry
H A DSBSymbol.cpp151 SBAddress SBSymbol::GetEndAddress() { in GetEndAddress() function in SBSymbol
H A DSBFunction.cpp152 SBAddress SBFunction::GetEndAddress() { in GetEndAddress() function in SBFunction
/openbsd-src/gnu/llvm/lldb/examples/functions/
H A Dmain.cpp223 addr_t hi_pc = function.GetEndAddress().GetFileAddress(); in main()