Lines Matching +full:m +full:- +full:class
2 # SPDX-License-Identifier: GPL-2.0-only
15 # mount -t tracefs nodev /sys/kernel/tracing
27 class CallTree:
28 """ This class provides a tree representation of the functions
72 s = "%s----%s (%s)\n" % (branch, self._func, self._time)
74 s = "%s----%s\n" % (branch, self._func)
78 branch = branch[:-1] + " "
80 if i != len(self._children) - 1:
89 class BrokenLineException(Exception):
95 class CommentLineException(Exception):
106 m = re.match("[^]]+?\\] +([a-z.]+) +([0-9.]+): (\\w+) <-(\\w+)", line)
107 if m is None:
109 return (m.group(2), m.group(3), m.group(4))