Lines Matching refs:addr
173 def SymbolInformation(lib, addr): argument
192 info = SymbolInformationForSet(lib, set([addr]))
193 return (info and info.get(addr)) or [(None, None, None)]
228 for addr in unique_addrs:
229 source_info = addr_to_line.get(addr)
232 if addr in addr_to_objdump:
233 (object_symbol, object_offset) = addr_to_objdump.get(addr)
238 result[addr] = [(source_symbol, source_location, object_symbol_with_offset)
299 for addr in addrs:
300 child.stdin.write("0x%s\n" % addr)
320 result[addr] = records
321 addr_cache[addr] = records
325 def StripPC(addr): argument
336 return addr & ~1
337 return addr
429 addr = components.group(1)
431 i_addr = int(addr, 16)