HomeSort by relevance Sort by last modified time
    Searched defs:log_path (Results 1 - 15 of 15) 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_org/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/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/
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/test/chromedriver/
capabilities.h 42 std::string log_path; member in struct:Capabilities
  /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/chromium_org/chrome/installer/util/
logging_installer.cc 124 base::FilePath log_path; local
125 if (PathService::Get(base::DIR_TEMP, &log_path)) {
126 log_path = log_path.Append(log_filename);
127 return log_path;
  /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/webdriver/
webdriver_server.cc 239 base::FilePath log_path; local
247 log_path = cmd_line->GetSwitchValuePath("log-path");
265 bool logging_success = InitWebDriverLogging(log_path, kAllLogLevel);
  /external/chromium_org/chrome/test/chromedriver/server/
chromedriver_server.cc 185 base::FilePath log_path; local
219 log_path = cmd_line->GetSwitchValuePath("log-path");
221 FILE* redir_stderr = _wfreopen(log_path.value().c_str(), L"w", stderr);
223 FILE* redir_stderr = freopen(log_path.value().c_str(), "w", stderr);
  /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
  /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/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_org/sandbox/win/sandbox_poc/
main_ui_window.cc 216 std::wstring log_path = host->OnShowBrowseForLogFileDlg(dialog); local
217 if (log_path.length() > 0) {
220 ::SetWindowText(edit_box_log_file, log_path.c_str());
  /external/chromium_org/chrome/app/
breakpad_linux.cc 589 char* log_path = reinterpret_cast<char*>(allocator.Alloc(log_path_len + 1)); local
590 my_memcpy(log_path, minidump.path(), log_path_len);
591 my_memcpy(log_path + log_path_len - 4, ".log", 4);
592 log_path[log_path_len] = '\0';
593 info.log_filename = log_path;
    [all...]

Completed in 593 milliseconds