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

  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
host_replay.sh 81 log_files=$(find ${board} -name "*.log" -type f 2>/dev/null)
82 # Since there are multiple filenames in $log_files, note that
83 # there should be no double quotes around $log_files after git rm.
84 [ -n "$log_files" ] && git rm $log_files
  /system/webservd/webservd/
log_manager.cc 222 std::set<base::FilePath> log_files; local
229 log_files.insert(file);
234 while (log_files.size() > kLogFilesToKeep) {
235 auto front_it = log_files.begin();
238 log_files.erase(front_it);
log_manager_unittest.cc 61 std::set<std::string> log_files; local
68 log_files.insert(file.BaseName().value());
71 return log_files;
  /external/autotest/client/cros/
cros_logging.py 228 log_files = []
231 log_files.extend(utils.system_output(
234 log_files.append(self._filename)
235 for log_file in log_files:
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_utils.py 81 log_files = glob.glob(os.path.join(conf.log_root_dir, directory, '*.log'))
82 for log_file in log_files:
  /external/autotest/client/common_lib/
base_job.py 647 log_files = [os.path.join(job.resultdir, self.global_filename)]
649 log_files.append(os.path.join(job.resultdir, log_entry.subdir,
654 for log_file in log_files:
663 self._tap_writer.record(log_entry, self._indenter.indent, log_files)
723 def record(self, log_entry, indent, log_files):
734 @param log_files: List of full path of files the TAP report will be
737 for log_file in log_files:
    [all...]

Completed in 107 milliseconds