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

/external/lldb/source/Core/
H A DVMRange.cpp58 s->AddressRange(offset + GetBaseAddress(), offset + GetEndAddress(), addr_width);
64 return lhs.GetBaseAddress() == rhs.GetBaseAddress() && lhs.GetEndAddress() == rhs.GetEndAddress();
70 return lhs.GetBaseAddress() != rhs.GetBaseAddress() || lhs.GetEndAddress() != rhs.GetEndAddress();
80 return lhs.GetEndAddress() < rhs.GetEndAddress();
90 return lhs.GetEndAddress() <= rhs.GetEndAddress();
100 return lhs.GetEndAddress() > rh
[all...]
/external/lldb/test/python_api/default-constructor/
H A Dsb_lineentry.py10 obj.GetEndAddress()
H A Dsb_function.py13 ea = obj.GetEndAddress()
H A Dsb_symbol.py13 obj.GetEndAddress()
/external/lldb/scripts/Python/interface/
H A DSBLineEntry.i20 print 'end addr: %s' % str(lineEntry.GetEndAddress())
54 GetEndAddress () const;
99 __swig_getmethods__["end_addr"] = GetEndAddress
100 if _newclass: 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 DSBFunction.i75 GetEndAddress ();
102 __swig_getmethods__["end_addr"] = GetEndAddress
103 if _newclass: 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 DSBSymbol.i48 GetEndAddress ();
87 __swig_getmethods__["end_addr"] = GetEndAddress
88 if _newclass: 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.''')
/external/lldb/include/lldb/Core/
H A DVMRange.h97 GetEndAddress () const function in class:lldb_private::VMRange
111 return (GetBaseAddress() <= addr) && (addr < GetEndAddress());
119 lldb::addr_t range_end = range.GetEndAddress();
120 return (GetBaseAddress() <= range_end) && (range_end <= GetEndAddress());
/external/lldb/include/lldb/API/
H A DSBFunction.h51 GetEndAddress ();
H A DSBLineEntry.h36 GetEndAddress () const;
H A DSBSymbol.h53 GetEndAddress ();
/external/lldb/source/API/
H A DSBFunction.cpp178 SBFunction::GetEndAddress () function in class:SBFunction
H A DSBSymbol.cpp177 SBSymbol::GetEndAddress () function in class:SBSymbol
H A DSBLineEntry.cpp89 SBLineEntry::GetEndAddress () const function in class:SBLineEntry
104 log->Printf ("SBLineEntry(%p)::GetEndAddress () => SBAddress (%p): %s",
/external/lldb/examples/functions/
H A Dmain.cpp239 addr_t hi_pc = function.GetEndAddress().GetFileAddress();
/external/lldb/utils/test/
H A Dlldb-disasm.py159 print "end address:", s.GetEndAddress()
/external/lldb/test/python_api/thread/
H A DTestThreadAPI.py269 end_addr = lineEntry.GetEndAddress().GetLoadAddress(target)
/external/chromium_org/v8/src/heap/
H A Dspaces.h1460 FreeListNode** GetEndAddress() { return &end_; } function in class:v8::internal::FreeListCategory

Completed in 206 milliseconds