Lines Matching refs:re
31 import re
80 m = re.match(r'^[Ll]inux *[Vv]ersion *(?P<v>\S*) .*', msg)
85 m = re.match(r'^(?P<x>[0-9]*)\.(?P<y>[0-9]*)\.(?P<z>[0-9]*).*', self.kernel)
312 if re.match(tp.stampfmt, line):
315 elif re.match(tp.sysinfofmt, line):
318 elif re.match(tp.cmdlinefmt, line):
321 elif re.match(tp.kparamsfmt, line):
327 m = re.match(r'[ \t]*(\[ *)(?P<ktime>[0-9\.]*)(\]) (?P<msg>.*)', line)
335 if(ktime == 0.0 and re.match(r'^Linux version .*', msg)):
339 m = re.match(r'.* setting system clock to (?P<d>[0-9\-]*)[ A-Z](?P<t>[0-9:]*) UTC.*', msg)
346 m = re.match(r'^calling *(?P<f>.*)\+.* @ (?P<p>[0-9]*)', msg)
352 m = re.match(r'^initcall *(?P<f>.*)\+.* returned (?P<r>.*) after (?P<t>.*) usecs', msg)
362 if(re.match(r'^Freeing unused kernel .*', msg)):
398 m = re.match(tp.ftrace_line_fmt, line.strip())