Lines Matching full:addresses
71 # For each image, run atos with the list of addresses.
72 for image_name, addresses in offsets_by_image.items():
74 if image_name not in self._binary_images or not len(addresses):
81 # addresses.
82 address_list = map(lambda x: x[1], addresses)
88 # list of |addresses|.
95 # order of |addresses| has stayed the same as |symbol_names|.
96 self._AddSymbolsToFrames(symbol_names, addresses)
326 def _RunAtos(self, load_address, dsym_file, addresses):
327 """Runs the atos with the provided arguments. |addresses| is used as stdin.
328 Returns a list of symbol information in the same order as |addresses|."""
343 addresses = map(hex, addresses)
344 (stdout, stderr) = proc.communicate(' '.join(addresses))