D | tree.py | 28 def push(self, start_time_s, mark, layer, phase, app_phase, subtract): argument 29 node = self.current.add(start_time_s, mark, layer, phase, app_phase, subtract) 116 node.layer, node.phase(), node.app_phase, subtract=False) 139 node.add_intermediate_parent(LAYER_APPLICATION, node.phase(), node.app_phase) 187 def __init__(self, start_time_s, mark, layer, phase, app_phase, subtract): argument 193 self.app_phase = app_phase 247 def add(self, start_time_s, mark, layer, phase, app_phase, subtract): argument 248 node = CallTreeNode(start_time_s, mark, layer, phase, app_phase, subtract) 253 def add_intermediate_parent(self, layer, phase, app_phase): argument 257 layer, phase, app_phase, subtract=False) [all …]
|