Lines Matching refs:re
31 import re
310 if re.match(tp.stampfmt, line):
313 elif re.match(tp.sysinfofmt, line):
316 elif re.match(tp.cmdlinefmt, line):
319 elif re.match(tp.kparamsfmt, line):
325 m = re.match('[ \t]*(\[ *)(?P<ktime>[0-9\.]*)(\]) (?P<msg>.*)', line)
333 if(ktime == 0.0 and re.match('^Linux version .*', msg)):
337 m = re.match('.* setting system clock to (?P<d>[0-9\-]*)[ A-Z](?P<t>[0-9:]*) UTC.*', msg)
344 m = re.match('^calling *(?P<f>.*)\+.* @ (?P<p>[0-9]*)', msg)
350 m = re.match('^initcall *(?P<f>.*)\+.* returned (?P<r>.*) after (?P<t>.*) usecs', msg)
360 if(re.match('^Freeing unused kernel .*', msg)):
396 m = re.match(tp.ftrace_line_fmt, line.strip())