HomeSort by relevance Sort by last modified time
    Searched defs:log_path (Results 1 - 16 of 16) 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 39 base::FilePath log_path = local
49 file = _wfopen(log_path.value().c_str(), L"w");
51 file = fopen(log_path.value().c_str(), "w");
55 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/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/chromium_org/chrome/test/chromedriver/
capabilities.h 132 std::string log_path; member in struct:Capabilities
logging.cc 209 base::FilePath log_path = cmd_line->GetSwitchValuePath("log-path"); local
211 FILE* redir_stderr = _wfreopen(log_path.value().c_str(), L"w", stderr);
213 FILE* redir_stderr = freopen(log_path.value().c_str(), "w", stderr);
  /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 232 base::FilePath log_path = GetSessionLogFile(command_line); local
238 base::FilePath target_path = SetUpSymlinkIfNeeded(log_path, true);
244 settings.log_file = log_path.value().c_str();
246 DLOG(ERROR) << "Unable to initialize logging to " << log_path.value();
247 RemoveSymlinkAndLog(log_path, target_path);
262 base::FilePath log_path; local
270 log_path = GetLogFileName();
277 log_path = GetSessionLogFile(command_line);
283 log_path, delete_old_log_file == logging::DELETE_OLD_LOG_FILE);
296 settings.log_file = log_path.value().c_str()
380 base::FilePath log_path; local
    [all...]
  /external/chromium_org/components/crash/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/chrome/browser/extensions/api/log_private/
log_private_api_chromeos.cc 520 const base::FilePath& log_path,
524 ->RegisterTempFile(extension_id(), log_path); local
533 log_path,
  /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 360 base::FilePath log_path = command_line_.GetSwitchValuePath(kLogFileSwitch); local
362 log_file = _wfopen(log_path.value().c_str(), L"w");
364 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/crash/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 659 milliseconds