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

  /system/update_engine/
main.cc 41 void SetupLogSymlink(const string& symlink_path, const string& log_path) {
49 base::FilePath(log_path),
53 if (symlink(log_path.c_str(), symlink_path.c_str()) == -1) {
55 << " pointing at " << log_path; local
  /external/autotest/tko/
retrieve_logs.cgi 139 def get_full_url(info, log_path):
145 path = log_path
154 log_path = _get_requested_path() variable
155 info = find_repository_host(log_path)
156 site_retrieve_logs(log_path)
157 print _PAGE % get_full_url(info, log_path)
  /tools/test/connectivity/acts/framework/acts/
logger.py 115 def _get_test_logger(log_path, TAG, prefix=None, filename=None):
123 log_path: Location of the log file.
151 create_dir(log_path)
152 fh = logging.FileHandler(os.path.join(log_path, 'test_run_details.txt'))
157 log.log_path = log_path
183 def get_test_logger(log_path, TAG, prefix=None, filename=None):
187 log_path: Location of the report file.
198 create_dir(log_path)
199 logger = _get_test_logger(log_path, TAG, prefix, filename
231 def log_path(self): member in class:LoggerProxy
    [all...]
  /system/bt/hci/src/
btsnoop.c 163 const char *log_path = stack_config->get_btsnoop_log_path(); local
168 snprintf(last_log_path, PATH_MAX, "%s.%" PRIu64, log_path,
170 if (!rename(log_path, last_log_path) && errno != ENOENT)
171 LOG_ERROR(LOG_TAG, "%s unable to rename '%s' to '%s': %s", __func__, log_path, last_log_path, strerror(errno));
174 logfile_fd = open(log_path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
176 LOG_ERROR(LOG_TAG, "%s unable to open '%s': %s", __func__, log_path, strerror(errno));
  /system/core/crash_reporter/
udev_collector.cc 182 FilePath log_path = GetCrashPath(crash_directory, dump_basename, "log"); local
195 bool result = GetLogContents(log_config_path_, udev_log_name, log_path);
197 AddCrashMetaUploadFile("logs", log_path.value());
user_collector.cc 202 FilePath log_path = GetCrashPath(crash_path, dump_basename, "log"); local
207 if (WriteNewFile(log_path, error_log.data(), error_log.length()) < 0) {
208 LOG(ERROR) << "Error writing new file " << log_path.value();
211 WriteCrashMetaData(meta_path, exec, log_path.value());
503 FilePath log_path = GetCrashPath(crash_path, dump_basename, "log"); local
505 if (GetLogContents(FilePath(log_config_path_), exec, log_path))
506 AddCrashMetaData("log", log_path.value());
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 1212 std::string log_path; local
    [all...]

Completed in 853 milliseconds