Home
last modified time | relevance | path

Searched refs:log_file (Results 1 – 10 of 10) sorted by relevance

/aosp12/system/update_engine/cros/
H A Dlogging.cc76 log_settings.log_file = nullptr; in SetupLogging()
78 string log_file; in SetupLogging() local
80 log_file = SetupLogFile(kSystemLogsRoot); in SetupLogging()
83 log_settings.log_file = log_file.c_str(); in SetupLogging()
85 log_settings.log_file_path = log_file.c_str(); in SetupLogging()
/aosp12/system/security/keystore/
H A Dtest-keystore20 log_file=$prefix.log
24 rm -f $log_file
30 append $log_file \# "$@"
47 …$@" | tr --delete '\r' | sed -E 's/[0-9]{4}-[0-9]{2}-[0-9]{2} +[0-9]{1,2}:[0-9]{2} //' >> $log_file
61 log "comparing $baseline_file and $log_file"
62 diff $baseline_file $log_file || (log $tag FAILED && exit 1)
/aosp12/system/core/init/
H A Dbootchart.cpp97 static void log_file(FILE* log, const char* procfile) { in log_file() function
160 log_file(&*stat_log, "/proc/stat"); in bootchart_thread_main()
161 log_file(&*disk_log, "/proc/diskstats"); in bootchart_thread_main()
/aosp12/bootable/recovery/otautil/include/otautil/
H A Dpaths.h75 void set_temporary_log_file(const std::string& log_file) { in set_temporary_log_file() argument
76 temporary_log_file_ = log_file; in set_temporary_log_file()
/aosp12/system/bt/gd/cert/
H A Dasync_subprocess_logger.py87 for log_file in log_files:
88 log_file.write(line)
/aosp12/bootable/recovery/
H A Drecovery.cpp225 std::string log_file(filename); in choose_recovery_file() local
227 log_file += "." + std::to_string(i); in choose_recovery_file()
230 if (ensure_path_mounted(log_file) == 0 && access(log_file.c_str(), R_OK) == 0) { in choose_recovery_file()
231 entries.push_back(std::move(log_file)); in choose_recovery_file()
/aosp12/system/bt/
H A Dbuild.py203 log_file = os.path.join(self.output_dir, '{}.log'.format(target))
204 with open(log_file, 'wb') as lf:
/aosp12/system/update_engine/aosp/
H A Dlogging_android.cc274 log_settings.log_file = nullptr; in SetupLogging()
/aosp12/system/extras/boottime_tools/bootanalyze/
H A Dbootanalyze.py645 log_file = ("shutdownlog-error-%s.txt") % (now.strftime("%Y-%m-%d-%H-%M-%S"))
646 print("Shutdown error, capture log to %s" % (log_file))
647 with open(log_file, 'w') as f:
/aosp12/system/update_engine/payload_generator/
H A Dgenerate_delta_main.cc442 log_settings.log_file = "delta_generator.log"; in Main()