Searched refs:log_line (Results 1 – 5 of 5) sorted by relevance
23 def BecameThrottled(log_line): argument24 return 'omap_thermal_throttle' in log_line27 def BecameUnthrottled(log_line): argument28 return 'omap_thermal_unthrottle' in log_line31 def GetThrottlingTemperature(log_line): argument32 if 'throttle_delayed_work_fn' in log_line:33 return float([s for s in log_line.split() if s.isdigit()][0]) / 1000.050 def BecameThrottled(log_line): argument51 return 'exynos_tmu: Throttling interrupt' in log_line54 def BecameUnthrottled(log_line): argument[all …]
27 for log_line in log_file:28 if log_line.find("""tests ===""") > -1:61 for log_line in log_file:62 if p.search(log_line):85 for log_line in log_file:86 if log_line.find("""Installing autotest on""") > -1:
125 char log_line[512]; in do_fatal_log() local126 vsnprintf(log_line, sizeof(log_line), format, stack_args); in do_fatal_log()128 alias(log_line); in do_fatal_log()
77 for log_line in log_file:78 parser.ProcessLogLine(log_line)
489 explicit TFLogEntry(int severity, absl::string_view log_line) in TFLogEntry() argument490 : severity_(AsAbslLogSeverity(severity)), log_line_(log_line) {} in TFLogEntry()