Lines Matching refs:dso_path
443 def add_addr(self, dso_path, func_addr, addr): argument
444 dso = self.dso_map.get(dso_path)
446 dso = self.dso_map[dso_path] = self.Dso()
451 for dso_path in self.dso_map:
452 self._convert_addrs_in_one_dso(dso_path, self.dso_map[dso_path])
454 def _convert_addrs_in_one_dso(self, dso_path, dso): argument
455 real_path = find_real_dso_path(dso_path, self.binary_cache_path)
457 if dso_path not in ['//anon', 'unknown', '[kernel.kallsyms]']:
458 log_debug("Can't find dso %s" % dso_path)
578 def get_dso(self, dso_path): argument
579 return self.dso_map.get(dso_path)
662 def get_dso_info(self, dso_path): argument
663 real_path = find_real_dso_path(dso_path, self.binary_cache_path)