Lines Matching refs:addr
158 def SymbolInformation(lib, addr): argument
177 info = SymbolInformationForSet(lib, set([addr]))
178 return (info and info.get(addr)) or [(None, None, None)]
213 for addr in unique_addrs:
214 source_info = addr_to_line.get(addr)
217 if addr in addr_to_objdump:
218 (object_symbol, object_offset) = addr_to_objdump.get(addr)
223 result[addr] = [(source_symbol, source_location, object_symbol_with_offset)
284 for addr in addrs:
286 child.stdin.write("0x%s\n" % addr)
306 result[addr] = records
307 addr_cache[addr] = records
311 def StripPC(addr): argument
322 return addr & ~1
323 return addr
415 addr = components.group(1)
417 i_addr = int(addr, 16)