Home
last modified time | relevance | path

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

/external/chromium_org/build/android/pylib/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/libnfc-nci/halimpl/bcm2079x/adaptation/
Dandroid_logmsg.cpp31 static char log_line [MAX_LOGCAT_LINE]; variable
208 if (nBytes > sizeof(log_line)) in DispHciCmd()
211 ToHex (data, data_len, log_line, sizeof(log_line)); in DispHciCmd()
212 __android_log_write (ANDROID_LOG_DEBUG, "BrcmHciX", log_line); in DispHciCmd()
226 if (nBytes > sizeof(log_line)) in DispHciEvt()
229 ToHex (data, data_len, log_line, sizeof(log_line)); in DispHciEvt()
230 __android_log_write (ANDROID_LOG_DEBUG, "BrcmHciR", log_line); in DispHciEvt()
252 if (nBytes > sizeof(log_line)) in DispLLCP()
255 ToHex (data, data_len, log_line, sizeof(log_line)); in DispLLCP()
256 __android_log_write (ANDROID_LOG_DEBUG, (is_recv) ? "BrcmLlcpR": "BrcmLlcpX", log_line); in DispLLCP()
[all …]
/external/chromium_org/build/android/pylib/
Dandroid_commands.py283 def GetLogTimestamp(log_line, year): argument
286 return datetime.datetime.strptime('%s-%s' % (year, log_line[:18]),
289 logging.critical('Error reading timestamp from ' + log_line)