Home
last modified time | relevance | path

Searched refs:call_tree (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/scripts/
Dreport.py84 self.call_tree = None
89 if self.call_tree is not None:
90 strs.append('%s' % self.call_tree)
179 cur_report_item.call_tree = node
236 prefix_str = '+ ' if report_item.call_tree is not None else ' '
245 if report_item.call_tree is not None:
246 self.display_call_tree(tree, id, report_item.call_tree, 1)
/system/extras/simpleperf/runtest/
Druntest.py65 self.call_tree = None
67 def set_call_tree(self, call_tree): argument
68 self.call_tree = call_tree
74 if self.call_tree:
75 strs.append('\t%s' % self.call_tree)
149 def check_relation(self, call_tree): argument
150 if not call_tree:
152 if self.symbol_name != call_tree.name:
156 for node in call_tree.children:
541 fulfilled = req.check_relation(symbol.call_tree)