Searched refs:callsite (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/scripts/inferno/ |
D | svg_renderer.py | 51 def get_heat_color(callsite, total_weight): argument 52 r = 245 + 10 * (1 - callsite.weight() / total_weight) 53 g = 110 + 105 * (1 - callsite.weight() / total_weight) 66 def create_svg_node(process, callsite, depth, f, total_weight, height, color_scheme, nav): argument 67 x = float(callsite.offset) / total_weight * 100 69 width = callsite.weight() / total_weight * 100 71 method = callsite.method.replace(">", ">").replace("<", "<") 76 r, g, b = get_dso_color(callsite.dso) 80 r, g, b = get_heat_color(callsite, total_weight) 85 weight_str = get_proper_scaled_time_string(callsite.weight()) [all …]
|
D | data_types.py | 104 for callsite in chain: 105 current = current.get_child(callsite) 108 def get_child(self, callsite): argument 109 key = (callsite.dso, callsite.method) 112 child = self.child_dict[key] = FlameGraphCallSite(callsite.method, callsite.dso,
|
/system/extras/simpleperf/doc/ |
D | inferno.md | 76 fail to reach the root callsite. These incomplete
|