Lines Matching refs:addr
179 def SymbolInformation(lib, addr): argument
198 info = SymbolInformationForSet(lib, set([addr]))
199 return (info and info.get(addr)) or [(None, None, None)]
234 for addr in unique_addrs:
235 source_info = addr_to_line.get(addr)
238 if addr in addr_to_objdump:
239 (object_symbol, object_offset) = addr_to_objdump.get(addr)
244 result[addr] = [(source_symbol, source_location, object_symbol_with_offset)
305 for addr in addrs:
307 child.stdin.write("0x%s\n" % addr)
330 result[addr] = records
331 addr_cache[addr] = records
335 def StripPC(addr): argument
346 return addr & ~1
347 return addr
439 addr = components.group(1)
441 i_addr = int(addr, 16)