Searched refs:GetEndAddress (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp40 DumpAddressRange(s, offset + GetBaseAddress(), offset + GetEndAddress(),
46 lhs.GetEndAddress() == rhs.GetEndAddress();
58 return lhs.GetEndAddress() < rhs.GetEndAddress();
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBLineEntry.i19 print('end addr: %s' % str(lineEntry.GetEndAddress()))
53 GetEndAddress () const;
95 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''')
H A DSBSymbol.i52 GetEndAddress ();
86 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''')
H A DSBFunction.i78 GetEndAddress ();
122 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
H A DSBModule.i19 symEA = symbol.GetEndAddress().GetFileAddress()
51 eaddr = symbol.GetEndAddress()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DVMRange.h65 lldb::addr_t GetEndAddress() const { return GetBaseAddress() + m_byte_size; } function in class:lldb_private::VMRange
70 return (GetBaseAddress() <= addr) && (addr < GetEndAddress());
75 lldb::addr_t range_end = range.GetEndAddress();
76 return (GetBaseAddress() <= range_end) && (range_end <= GetEndAddress());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFunction.h45 lldb::SBAddress GetEndAddress();
H A DSBLineEntry.h30 lldb::SBAddress GetEndAddress() const;
H A DSBSymbol.h46 SBAddress GetEndAddress();
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp166 SBAddress SBFunction::GetEndAddress() { function in class:SBFunction
167 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBFunction, GetEndAddress);
272 LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetEndAddress, ());
H A DSBSymbol.cpp166 SBAddress SBSymbol::GetEndAddress() { function in class:SBSymbol
167 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBSymbol, GetEndAddress);
236 LLDB_REGISTER_METHOD(lldb::SBAddress, SBSymbol, GetEndAddress, ());
H A DSBLineEntry.cpp64 SBAddress SBLineEntry::GetEndAddress() const { function in class:SBLineEntry
65 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBAddress, SBLineEntry, GetEndAddress);
203 LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBLineEntry, GetEndAddress, ());

Completed in 95 milliseconds