OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:get_max_depth
(Results
1 - 3
of
3
) sorted by null
/system/extras/simpleperf/scripts/inferno/
data_types.py
128
def
get_max_depth
(self):
member in class:FlameGraphCallSite
129
return max([c.
get_max_depth
() for c in self.children]) + 1 if self.children else 1
svg_renderer.py
186
height = (flamegraph.
get_max_depth
() + 2) * SVG_NODE_HEIGHT
/system/extras/perfprofd/scripts/
perf_proto_stack_sqlite_flame.py
95
def
get_max_depth
(self):
member in class:Callsite
97
return max([c.
get_max_depth
() for c in self.child_map.itervalues()]) + 1
Completed in 270 milliseconds