Lines Matching refs:dso_name
101 def __init__(self, dso_name): argument
102 self.dso_name = dso_name
218 self.addr2line.add_addr(symbol.dso_name, symbol.symbol_addr,
220 self.addr2line.add_addr(symbol.dso_name, symbol.symbol_addr,
239 if not self.dso_filter or symbol.dso_name in self.dso_filter:
293 self._add_dso_period(symbol.dso_name, period, used_dso_dict)
295 sources = self.addr2line.get_sources(symbol.dso_name, symbol.vaddr_in_file)
303 sources = self.addr2line.get_sources(symbol.dso_name, symbol.symbol_addr)
314 def _add_dso_period(self, dso_name, period, used_dso_dict): argument
315 if dso_name not in used_dso_dict:
316 used_dso_dict[dso_name] = True
317 dso_period = self.dso_periods.get(dso_name)
319 dso_period = self.dso_periods[dso_name] = DsoPeriod(dso_name)
353 f.write('dso %s: %s\n' % (dso_period.dso_name,