Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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 <()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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 DSBSymbol.i50 GetEndAddress ();
84 …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 DSBModule.i19 symEA = symbol.GetEndAddress().GetFileAddress()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_lineentry.py10 obj.GetEndAddress()
H A Dsb_symbol.py13 obj.GetEndAddress()
H A Dsb_function.py13 ea = obj.GetEndAddress()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBSymbol.h46 SBAddress GetEndAddress();
H A DSBFunction.h45 lldb::SBAddress GetEndAddress();
H A DSBLineEntry.h30 lldb::SBAddress GetEndAddress() const;
/llvm-project-15.0.7/lldb/test/API/functionalities/step_scripted/
H A DSteps.py63 end = le.GetEndAddress().GetLoadAddress(self.target)
/llvm-project-15.0.7/lldb/examples/python/
H A Dscripted_step.py167 end_address = cur_line_entry.GetEndAddress()
/llvm-project-15.0.7/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
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DVMRangeTest.cpp19 (*os) << "VMRange(" << v.GetBaseAddress() << ", " << v.GetEndAddress() << ")"; in PrintTo()
/llvm-project-15.0.7/lldb/examples/functions/
H A Dmain.cpp223 addr_t hi_pc = function.GetEndAddress().GetFileAddress(); in main()
/llvm-project-15.0.7/lldb/test/API/python_api/thread/
H A DTestThreadAPI.py256 end_addr = lineEntry.GetEndAddress().GetLoadAddress(target)