Home
last modified time | relevance | path

Searched refs:log_path (Results 1 – 9 of 9) sorted by relevance

/external/chromium/chrome/common/
Dlogging_chrome.cc237 FilePath log_path = GetSessionLogFile(command_line); in RedirectChromeLogging() local
243 FilePath target_path = SetUpSymlinkIfNeeded(log_path, true); in RedirectChromeLogging()
252 if (!InitLogging(log_path.value().c_str(), in RedirectChromeLogging()
257 LOG(ERROR) << "Unable to initialize logging to " << log_path.value(); in RedirectChromeLogging()
258 RemoveSymlinkAndLog(log_path, target_path); in RedirectChromeLogging()
276 FilePath log_path = GetLogFileName(); in InitChromeLogging() local
283 log_path = GetSessionLogFile(command_line); in InitChromeLogging()
289 log_path, delete_old_log_file == logging::DELETE_OLD_LOG_FILE); in InitChromeLogging()
302 bool success = InitLogging(log_path.value().c_str(), in InitChromeLogging()
310 PLOG(ERROR) << "Unable to initialize logging to " << log_path.value() in InitChromeLogging()
[all …]
/external/chromium/base/test/
Dperf_test_suite.cc25 FilePath log_path = in Initialize() local
27 if (log_path.empty()) { in Initialize()
30 log_path = exe.ReplaceExtension(FILE_PATH_LITERAL("log")); in Initialize()
31 log_path = log_path.InsertBeforeExtension(FILE_PATH_LITERAL("_perf")); in Initialize()
33 ASSERT_TRUE(InitPerfLog(log_path)); in Initialize()
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/
Dwebserver.rb118 def start_server(port, config_path, log_path) argument
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)
/external/chromium/chrome/browser/net/
Dnet_log_logger.cc14 NetLogLogger::NetLogLogger(const FilePath &log_path) in NetLogLogger() argument
16 if (!log_path.empty()) { in NetLogLogger()
18 file_.Set(file_util::OpenFile(log_path, "w")); in NetLogLogger()
Dnet_log_logger.h25 explicit NetLogLogger(const FilePath &log_path);
/external/webkit/Tools/Scripts/webkitpy/common/system/
Ddeprecated_logging.py76 def _open_log_file(log_path): argument
77 (log_directory, log_name) = os.path.split(log_path)
80 return codecs.open(log_path, "a+", "utf-8")
/external/chromium/chrome/browser/chromeos/
Dboot_times_loader.cc238 const FilePath log_path(kLogPath); in RecordStatsDelayed() local
240 log_path.Append(FilePath(kUptimePrefix + name)); in RecordStatsDelayed()
241 const FilePath disk_output = log_path.Append(FilePath(kDiskPrefix + name)); in RecordStatsDelayed()
257 const FilePath log_path(kLogPath); in WriteTimes() local
299 log_path.Append(base_name), output.data(), output.size()); in WriteTimes()
/external/webkit/Tools/Scripts/
Dprint-vse-failure-logs68 def sort_key(log_path): argument
69 project_name = os.path.basename(os.path.dirname(os.path.dirname(log_path)))
/external/chromium/base/
Dperftimer.h21 bool InitPerfLog(const FilePath& log_path);