Home
last modified time | relevance | path

Searched refs:log_line (Results 1 – 4 of 4) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/perf/
Dthermal_throttle.py23 def BecameThrottled(log_line): argument
24 return 'omap_thermal_throttle' in log_line
27 def BecameUnthrottled(log_line): argument
28 return 'omap_thermal_unthrottle' in log_line
31 def GetThrottlingTemperature(log_line): argument
32 if 'throttle_delayed_work_fn' in log_line:
33 return float([s for s in log_line.split() if s.isdigit()][0]) / 1000.0
50 def BecameThrottled(log_line): argument
51 return 'exynos_tmu: Throttling interrupt' in log_line
54 def BecameUnthrottled(log_line): argument
[all …]
/external/libmojo/third_party/catapult/devil/devil/android/perf/
Dthermal_throttle.py21 def BecameThrottled(log_line): argument
22 return 'omap_thermal_throttle' in log_line
25 def BecameUnthrottled(log_line): argument
26 return 'omap_thermal_unthrottle' in log_line
29 def GetThrottlingTemperature(log_line): argument
30 if 'throttle_delayed_work_fn' in log_line:
31 return float([s for s in log_line.split() if s.isdigit()][0]) / 1000.0
48 def BecameThrottled(log_line): argument
49 return 'exynos_tmu: Throttling interrupt' in log_line
52 def BecameUnthrottled(log_line): argument
[all …]
/external/toolchain-utils/deprecated/
Dsummarize_results.py27 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:
/external/autotest/server/
Dsite_gtest_runner.py82 for log_line in log_file:
83 parser.ProcessLogLine(log_line)