Home | History | Annotate | Download | only in recovery

Lines Matching defs:LOG_FILE

74 static const char *LOG_FILE = "/cache/recovery/log";
354 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
358 chmod(LOG_FILE, 0600);
359 chown(LOG_FILE, 1000, 1000); // system user
708 char* log_file;
709 if (asprintf(&log_file, (i == 0) ? "%s" : "%s.%d", LAST_LOG_FILE, i) == -1) {
713 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
714 free(log_file);
716 entries[n++] = log_file;