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

  /external/chromium_org/base/test/
perf_test_suite.cc 24 FilePath log_path = local
26 if (log_path.empty()) {
27 PathService::Get(FILE_EXE, &log_path);
31 log_path = tmp_dir.Append(log_path.BaseName());
33 log_path = log_path.ReplaceExtension(FILE_PATH_LITERAL("log"));
34 log_path = log_path.InsertBeforeExtension(FILE_PATH_LITERAL("_perf"));
36 ASSERT_TRUE(InitPerfLog(log_path));
    [all...]
  /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/browser/media/
webrtc_log_uploader.h 30 // Used when uploading is done to perform post-upload actions. |log_path| is
36 base::FilePath log_path; member in struct:WebRtcLogUploadDoneData
  /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 110 std::string log_path; member in struct:Capabilities
logging.cc 208 base::FilePath log_path = cmd_line->GetSwitchValuePath("log-path"); local
210 FILE* redir_stderr = _wfreopen(log_path.value().c_str(), L"w", stderr);
212 FILE* redir_stderr = freopen(log_path.value().c_str(), "w", stderr);
  /external/lldb/scripts/
buildbot.py 30 log_path,
36 self.m_log_path = os.path.abspath(log_path)
146 log_path=arg_dict["log_file"], variable
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_flags.h 39 const char *log_path; member in struct:__sanitizer::CommonFlags
  /external/chromium_org/chrome/common/
logging_chrome.cc 228 base::FilePath log_path = GetSessionLogFile(command_line); local
234 base::FilePath target_path = SetUpSymlinkIfNeeded(log_path, true);
240 settings.log_file = log_path.value().c_str();
242 DLOG(ERROR) << "Unable to initialize logging to " << log_path.value();
243 RemoveSymlinkAndLog(log_path, target_path);
258 base::FilePath log_path; local
266 log_path = GetLogFileName();
273 log_path = GetSessionLogFile(command_line);
279 log_path, delete_old_log_file == logging::DELETE_OLD_LOG_FILE);
292 settings.log_file = log_path.value().c_str()
376 base::FilePath log_path; local
    [all...]
  /external/chromium_org/components/breakpad/browser/
crash_handler_host_linux.cc 375 const base::FilePath log_path = local
377 base::WriteFile(log_path, info->asan_report_str, info->asan_report_length);
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 216 base::string16 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/google_apis/gcm/tools/
mcs_probe.cc 359 base::FilePath log_path = command_line_.GetSwitchValuePath(kLogFileSwitch); local
361 log_file = _wfopen(log_path.value().c_str(), L"w");
363 log_file = fopen(log_path.value().c_str(), "w");
  /external/lldb/examples/interposing/darwin/fd_interposing/
FDInterposing.cpp 454 const char *log_path = getenv ("FileDescriptorLogFile"); local
455 if (log_path)
456 g_log_fd = ::creat (log_path, 0660);
    [all...]
  /external/chromium_org/components/breakpad/app/
breakpad_linux.cc 576 char* log_path = reinterpret_cast<char*>(allocator.Alloc(log_path_len + 1)); local
577 my_memcpy(log_path, minidump.path(), log_path_len);
578 my_memcpy(log_path + log_path_len - 4, ".log", 4);
579 log_path[log_path_len] = '\0';
580 info.log_filename = log_path;
    [all...]

Completed in 566 milliseconds