Lines Matching full:functions
3 # Print the top N most executed functions in QEMU using perf.
5 # topN_perf.py [-h] [-n] <number of displayed top functions> -- \
10 # [-n] - Specify the number of top functions to print.
42 usage='topN_perf.py [-h] [-n] <number of displayed top functions > -- '
47 help='Specify the number of top functions to print.')
112 # Read the reported data to functions[]
113 functions = [] variable
117 functions = [line for line in data.readlines() if line and line[0] variable
120 # Limit the number of top functions to "top"
121 number_of_top_functions = top if len(functions) > top else len(functions)
123 # Store the data of the top functions in top_functions[]
124 top_functions = functions[:number_of_top_functions]
136 # Print top N functions