Lines Matching defs:Address
40 class Address:
41 """Class that represents an address that will be symbolicated"""
44 self.load_addr = load_addr # The load address that this object represents
45 self.so_addr = None # the resolved lldb.SBAddress (if any), named so_addr for section/offset address
46 self.sym_ctx = None # The cached symbol context for this address
47 self.description = None # Any original textual description of this address to be used as a backup in case symbolication fails
48 self.symbolication = None # The cached symbolicated string that describes this address
146 """Class that represents an load address range"""
182 print '<name>=<base> __TEXT=0x123000 Section from base address only'
183 print '<name>=<base>-<end> __TEXT=0x123000-0x124000 Section from base address and end address'
184 print '<name>=<base>+<size> __TEXT=0x123000+0x1000 Section from base address and size'
436 # that a load address belongs to and lazily load its module in the
442 symbolicated_address = Address(self.target, load_addr)
456 symbolicated_address = Address(self.target, inlined_parent_so_addr.GetLoadAddress(self.target))