Searched refs:log_path (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium/base/test/
H A Dperf_test_suite.cc25 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_org/base/test/
H A Dperf_test_suite.cc24 FilePath log_path = local
26 if (log_path.empty()) {
29 log_path = exe.ReplaceExtension(FILE_PATH_LITERAL("log"));
30 log_path = log_path.InsertBeforeExtension(FILE_PATH_LITERAL("_perf"));
32 ASSERT_TRUE(InitPerfLog(log_path));
H A Dperf_log.h15 bool InitPerfLog(const FilePath& log_path);
/external/chromium/chrome/browser/net/
H A Dnet_log_logger.cc14 NetLogLogger::NetLogLogger(const FilePath &log_path) argument
16 if (!log_path.empty()) {
18 file_.Set(file_util::OpenFile(log_path, "w"));
H A Dnet_log_logger.h22 // 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_org/chrome/browser/net/
H A Dchrome_net_log.cc38 base::FilePath log_path = local
48 file = _wfopen(log_path.value().c_str(), L"w");
50 file = fopen(log_path.value().c_str(), "w");
54 LOG(ERROR) << "Could not open file " << log_path.value()
/external/chromium_org/content/shell/browser/
H A Dshell_net_log.cc40 base::FilePath log_path = local
50 file = _wfopen(log_path.value().c_str(), L"w");
52 file = fopen(log_path.value().c_str(), "w");
56 LOG(ERROR) << "Could not open file " << log_path.value()
/external/chromium_org/chrome/common/
H A Dlogging_chrome.cc238 base::FilePath log_path = GetSessionLogFile(command_line); local
244 base::FilePath target_path = SetUpSymlinkIfNeeded(log_path, true);
255 settings.log_file = log_path.value().c_str();
258 DLOG(ERROR) << "Unable to initialize logging to " << log_path.value();
259 RemoveSymlinkAndLog(log_path, target_path);
274 base::FilePath log_path; local
282 log_path = GetLogFileName();
289 log_path = GetSessionLogFile(command_line);
295 log_path, delete_old_log_file == logging::DELETE_OLD_LOG_FILE);
313 settings.log_file = log_path
407 base::FilePath log_path; local
[all...]
/external/chromium/chrome/common/
H A Dlogging_chrome.cc237 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
402 FilePath log_path; local
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.h40 // Write logs to "log_path.pid" instead of stderr.
41 const char *log_path; member in struct:__sanitizer::CommonFlags
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.h61 // Write logs to "log_path.pid".
64 const char *log_path; member in struct:__tsan::Flags
H A Dtsan_flags.cc55 f->log_path = "stderr";
86 ParseFlag(env, &f->log_path, "log_path");
/external/chromium_org/chrome/test/chromedriver/server/
H A Dserver.py16 def __init__(self, exe_path, log_path=None):
21 log_path: path to the log file
30 if log_path:
31 chromedriver_args.extend(['--verbose', '--log-path=%s' % log_path])
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Doutputtee.py64 def _open_log_file(log_path):
65 (log_directory, log_name) = os.path.split(log_path)
68 return codecs.open(log_path, "a+", "utf-8")
/external/chromium_org/chrome/test/functional/
H A Dwebpagereplay.py90 log_path=None):
102 log_path: a path to a log file.
107 self.log_path = log_path or LOG_PATH
144 log_dir = os.path.dirname(self.log_path)
147 return open(self.log_path, 'w')
162 for line in open(self.log_path).readlines():
204 log = open(self.log_path).read()
/external/chromium/base/
H A Dperftimer.h21 bool InitPerfLog(const FilePath& log_path);
/external/chromium_org/chrome/installer/tools/
H A Dvalidate_installation_main.cc91 base::FilePath log_path; local
93 if (PathService::Get(base::DIR_TEMP, &log_path))
94 return log_path.Append(kLogFileName_);
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_java_tests.py65 chromedriver_path, chrome_path, log_path, android_package_key,
75 log_path: path to server log.
104 if log_path:
105 sys_props += ['webdriver.chrome.logfile=' + log_path]
323 log_path=options.log_path,
H A Drun_all_tests.py32 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
33 print 'chromedriver server log: %s' % log_path
38 '--log-path=%s' % log_path,
/external/chromium_org/chrome/test/chromedriver/
H A Dcapabilities.h106 std::string log_path; member in struct:Capabilities
H A Dlogging.cc189 base::FilePath log_path = cmd_line->GetSwitchValuePath("log-path"); local
191 FILE* redir_stderr = _wfreopen(log_path.value().c_str(), L"w", stderr);
193 FILE* redir_stderr = freopen(log_path.value().c_str(), "w", stderr);
/external/chromium/chrome/browser/chromeos/
H A Dboot_times_loader.cc238 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());
/external/chromium_org/chrome/browser/chromeos/
H A Dboot_times_loader.cc144 const base::FilePath log_path(kLogPath);
146 log_path.Append(base::FilePath(kUptimePrefix + name));
148 log_path.Append(base::FilePath(kDiskPrefix + name));
164 const base::FilePath log_path(kLoginLogPath);
213 log_path.Append(base_name), output.data(), output.size());
/external/chromium_org/google_apis/gcm/tools/
H A Dmcs_probe.cc266 base::FilePath log_path = command_line_.GetSwitchValuePath(kLogFileSwitch); local
268 log_file = _wfopen(log_path.value().c_str(), L"w");
270 log_file = fopen(log_path.value().c_str(), "w");
/external/chromium_org/chrome_frame/test/reliability/
H A Dpage_load_test.cc368 void SaveDebugLog(const base::FilePath& log_path, const std::wstring& log_id, argument
370 if (!log_path.empty()) {
372 ConstructSavedDebugLogPath(log_path, index);
373 if (base::Move(log_path, saved_log_file_path)) {

Completed in 1105 milliseconds

12