HomeSort by relevance Sort by last modified time
    Searched refs:log_line (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/build/android/pylib/perf/
thermal_throttle.py 23 def BecameThrottled(log_line):
24 return 'omap_thermal_throttle' in log_line
27 def BecameUnthrottled(log_line):
28 return 'omap_thermal_unthrottle' in log_line
31 def GetThrottlingTemperature(log_line):
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):
51 return 'exynos_tmu: Throttling interrupt' in log_line
54 def BecameUnthrottled(log_line)
    [all...]