Home
last modified time | relevance | path

Searched refs:log_line (Results 1 – 5 of 5) 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/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/minijail/
Dutil.c123 char log_line[512]; in do_fatal_log() local
124 vsnprintf(log_line, sizeof(log_line), format, stack_args); in do_fatal_log()
126 alias(log_line); in do_fatal_log()
/external/autotest/server/
Dsite_gtest_runner.py77 for log_line in log_file:
78 parser.ProcessLogLine(log_line)
/external/syzkaller/vendor/google.golang.org/appengine/internal/log/
Dlog_service.proto21 repeated UserAppLogLine log_line = 2; field