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

  /external/chromium/base/test/
perf_test_suite.cc 25 FilePath log_path = local
27 if (log_path.empty()) {
30 log_path = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
31 log_path = log_path.InsertBeforeExtension(FILE_PATH_LITERAL("_perf"));
33 ASSERT_TRUE(InitPerfLog(log_path));
  /external/chromium/chrome/browser/net/
net_log_logger.cc 14 NetLogLogger::NetLogLogger(const FilePath &log_path)
16 if (!log_path.empty()) {
18 file_.Set(file_util::OpenFile(log_path, "w"));
net_log_logger.h 22 // If |log_path| is empty or file creation fails, writes to VLOG(1).
23 // Otherwise, writes to |log_path|. Uses one line per entry, for
25 explicit NetLogLogger(const FilePath &log_path);
  /external/chromium/chrome/common/
logging_chrome.cc 237 FilePath log_path = GetSessionLogFile(command_line); local
243 FilePath target_path = SetUpSymlinkIfNeeded(log_path, true);
252 if (!InitLogging(log_path.value().c_str(),
257 LOG(ERROR) << "Unable to initialize logging to " << log_path.value();
258 RemoveSymlinkAndLog(log_path, target_path);
276 FilePath log_path = GetLogFileName(); local
283 log_path = GetSessionLogFile(command_line);
289 log_path, delete_old_log_file == logging::DELETE_OLD_LOG_FILE);
302 bool success = InitLogging(log_path.value().c_str(),
310 PLOG(ERROR) << "Unable to initialize logging to " << log_path.value(
402 FilePath log_path; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_flags.h 57 // Write logs to "log_path.pid".
60 const char *log_path; member in struct:__tsan::Flags
tsan_flags.cc 53 f->log_path = "stderr";
81 ParseFlag(env, &f->log_path, "log_path");
tsan_rtl.cc 188 if (internal_strcmp(flags()->log_path, "stdout") == 0)
190 else if (internal_strcmp(flags()->log_path, "stderr") == 0)
193 __sanitizer_set_report_path(flags()->log_path);
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
webserver.rb 118 def start_server(port, config_path, log_path)
124 if not log_path
125 log_path = config['access_log_path']
127 puts "- Setting up logging to #{log_path}"
128 access_log_stream = Log.new(log_path)
149 :log_path => nil
156 opts.on( '-l', '--log PATH', 'Use PATH for log file' ) { |path| options[:log_path] = path }
160 start_server(options[:port], options[:config_path], options[:log_path])
  /external/webkit/Tools/Scripts/webkitpy/common/system/
deprecated_logging.py 76 def _open_log_file(log_path):
77 (log_directory, log_name) = os.path.split(log_path)
80 return codecs.open(log_path, "a+", "utf-8")
  /external/chromium/base/
perftimer.h 21 bool InitPerfLog(const FilePath& log_path);
  /external/compiler-rt/lib/asan/
asan_flags.h 100 // ASan will write logs to "log_path.pid" instead of stderr.
101 const char *log_path; member in struct:__asan::Flags
asan_rtl.cc 124 ParseFlag(str, &f->log_path, "log_path");
166 f->log_path = 0;
437 __sanitizer_set_report_path(flags()->log_path);
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 68 def sort_key(log_path):
69 project_name = os.path.basename(os.path.dirname(os.path.dirname(log_path)))
  /external/chromium/chrome/browser/chromeos/
boot_times_loader.cc 238 const FilePath log_path(kLogPath);
240 log_path.Append(FilePath(kUptimePrefix + name));
241 const FilePath disk_output = log_path.Append(FilePath(kDiskPrefix + name));
257 const FilePath log_path(kLogPath);
299 log_path.Append(base_name), output.data(), output.size());

Completed in 330 milliseconds