Lines Matching full:time
5 # time data, and format with time deltas.
19 have time data prefixed because the CONFIG_PRINTK_TIME option is set, or
20 the kernel command line option "time" is specified. When run with no
21 options, the time information is converted to show the time delta between
23 are relative to a single (base) point in time.
27 -b <base> Specify a base for time references.
31 line) is used as the time reference.
50 time = string.atof(time_str)
52 #print "time=", time
53 return (time, rest)
58 # time data is expressed in seconds.useconds,
65 (time, rest) = get_time(line)
67 # if any problem parsing time, don't convert anything
71 # show time from base
72 delta = time - base_time
74 # just show time from last line
75 delta = time - last_time
76 last_time = time
78 return ("[%5.6f < %5.6f >]" % (time, delta)) + rest
111 (time, rest) = get_time(line)
115 base_time = time