Lines Matching +full:data +full:- +full:lines
2 # SPDX-License-Identifier: GPL-2.0-only
5 # time data, and format with time deltas.
18 This program parses the output from a set of printk message lines which
19 have time data prefixed because the CONFIG_PRINTK_TIME option is set, or
22 each printk line and the next. When run with the '-b' option, all times
26 -h Show this usage help.
27 -b <base> Specify a base for time references.
34 $ show_delta -b NET4 timefile
43 # raise an exception if no timing data was found
58 # time data is expressed in seconds.useconds,
72 delta = time - base_time
75 delta = time - last_time
84 if arg=="-b":
85 base_str = sys.argv[sys.argv.index("-b")+1]
86 elif arg=="-h":
95 lines = open(filein,"r").readlines()
109 for line in lines:
125 for line in lines: