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

1 2

  /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_org/base/test/
perf_test_suite.cc 24 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));
perf_log.h 15 bool InitPerfLog(const FilePath& 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_org/chrome/browser/net/
chrome_net_log.cc 38 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/
shell_net_log.cc 40 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/
logging_chrome.cc 238 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.value().c_str()
407 base::FilePath log_path; local
    [all...]
  /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/sanitizer_common/
sanitizer_flags.h 40 // 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/
tsan_flags.h 61 // Write logs to "log_path.pid".
64 const char *log_path; member in struct:__tsan::Flags
tsan_flags.cc 55 f->log_path = "stderr";
86 ParseFlag(env, &f->log_path, "log_path");
  /external/chromium_org/chrome/test/chromedriver/server/
server.py 16 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/
outputtee.py 64 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/base/
perftimer.h 21 bool InitPerfLog(const FilePath& log_path);
  /external/chromium_org/chrome/test/functional/
webpagereplay.py 26 LOG_PATH = os.path.join(
90 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(
    [all...]
  /external/chromium_org/chrome/installer/tools/
validate_installation_main.cc 91 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/
capabilities.h 106 std::string log_path; member in struct:Capabilities
logging.cc 189 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_org/chrome/test/chromedriver/test/
run_all_tests.py 32 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
33 print 'chromedriver server log: %s' % log_path
38 '--log-path=%s' % log_path,
run_java_tests.py 65 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,
  /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());
  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.cc 144 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/
mcs_probe.cc 266 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/
page_load_test.cc 368 void SaveDebugLog(const base::FilePath& log_path, const std::wstring& log_id,
370 if (!log_path.empty()) {
372 ConstructSavedDebugLogPath(log_path, index);
373 if (base::Move(log_path, saved_log_file_path)) {

Completed in 914 milliseconds

1 2