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

  /external/chromium-trace/catapult/devil/devil/android/perf/
thermal_throttle.py 21 def BecameThrottled(log_line):
22 return 'omap_thermal_throttle' in log_line
25 def BecameUnthrottled(log_line):
26 return 'omap_thermal_unthrottle' in log_line
29 def GetThrottlingTemperature(log_line):
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):
49 return 'exynos_tmu: Throttling interrupt' in log_line
52 def BecameUnthrottled(log_line)
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
android_logmsg.cpp 31 static char log_line [MAX_LOGCAT_LINE]; variable
208 if (nBytes > sizeof(log_line))
211 ToHex (data, data_len, log_line, sizeof(log_line));
212 __android_log_write (ANDROID_LOG_DEBUG, "BrcmHciX", log_line);
226 if (nBytes > sizeof(log_line))
229 ToHex (data, data_len, log_line, sizeof(log_line));
230 __android_log_write (ANDROID_LOG_DEBUG, "BrcmHciR", log_line);
252 if (nBytes > sizeof(log_line))
    [all...]
  /bionic/libc/bionic/
syslog.cpp 114 char log_line[1024]; local
115 vsnprintf(log_line, sizeof(log_line), log_fmt, args);
121 __libc_format_log(android_log_priority, log_tag, "%s", log_line);
  /system/core/logwrapper/
logwrap.c 173 static void log_line(struct log_info *log_info, char *line, int len) { function
387 log_line(&log_info, &buffer[a], b - a);
395 log_line(&log_info, &buffer[a], b - a);
435 log_line(&log_info, &buffer[a], b - a);
  /external/autotest/server/
site_gtest_runner.py 82 for log_line in log_file:
83 parser.ProcessLogLine(log_line)
  /external/autotest/client/virt/
virt_utils.py 717 session.set_output_func(log_line)
845 output_func = log_line
1052 def log_line(filename, line): function
    [all...]
kvm_vm.py     [all...]

Completed in 621 milliseconds