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
51 def BecameThrottled(log_line): argument
52 return 'exynos_tmu: Throttling interrupt' in log_line
55 def BecameUnthrottled(log_line): argument
[all …]
/external/zstd/contrib/single_file_libs/
Dcombine.sh73 log_line() { function
121 log_line "Processing: $file"
134 log_line "Excluding: $inc"
143 log_line "Not Inlining: $inc"
169 log_line "Error: Unable to find: \"$1\""
/external/libcups/scheduler/
Dlog.c61 static char *log_line = NULL; /* Line for output file */ variable
536 return (cupsdWriteErrorLog(level, log_line)); in cupsdLogClient()
602 size_t log_len = strlen(log_line); in cupsdLogJob()
608 memcpy(temp->message, log_line, log_len + 1); in cupsdLogJob()
652 sd_journal_send("MESSAGE=%s", log_line, in cupsdLogJob()
661 sd_journal_send("MESSAGE=%s", log_line, in cupsdLogJob()
670 return (cupsdWriteErrorLog(level, log_line)); in cupsdLogJob()
758 return (cupsdWriteErrorLog(level, log_line)); in cupsdLogMessage()
1304 log_line = malloc(log_linesize); in format_log_line()
1306 if (!log_line) in format_log_line()
[all …]
/external/minijail/
Dutil.c125 char log_line[512]; in do_fatal_log() local
126 vsnprintf(log_line, sizeof(log_line), format, stack_args); in do_fatal_log()
128 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)