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

1 2

  /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...]
perf_log.h 15 bool InitPerfLog(const FilePath& log_path);
  /external/chromium_org/chrome/browser/chromeos/system_logs/
debug_log_writer.h 17 // - log_path: where the log file was saved in the case of success;
19 typedef base::Callback<void(const base::FilePath& log_path, bool succeeded)>
  /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/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/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_org/tools/telemetry/telemetry/core/
webpagereplay.py 25 LOG_PATH = os.path.join(
90 log_path=None):
105 log_path: a path to a log file.
110 self.log_path = log_path or LOG_PATH
149 log_dir = os.path.dirname(self.log_path)
152 return open(self.log_path, 'w')
164 with open(self.log_path) as f:
208 with open(self.log_path) as f
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_flags.h 39 const char *log_path; member in struct:__sanitizer::CommonFlags
sanitizer_flags.cc 46 f->log_path = "stderr";
91 ParseFlag(str, &f->log_path, "log_path",
92 "Write logs to \"log_path.pid\". The special values are \"stdout\" and "
  /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/browser/media/
webrtc_log_uploader.cc 101 !it->second.log_path.empty()) {
104 WebRtcLogList::GetWebRtcLogListFileForDirectory(it->second.log_path);
146 DCHECK(!upload_done_data.log_path.empty());
154 if (base::PathExists(upload_done_data.log_path)) {
155 WebRtcLogUtil::DeleteOldWebRtcLogFiles(upload_done_data.log_path);
159 upload_done_data.log_path.AppendASCII(local_log_id)
165 upload_done_data.log_path);
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/test/chromedriver/test/
run_all_tests.py 34 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
35 print 'chromedriver server log: %s' % log_path
40 '--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]
324 log_path=options.log_path,
  /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/browser/chromeos/
boot_times_loader.cc 226 const base::FilePath log_path(kLogPath);
228 log_path.Append(base::FilePath(kUptimePrefix + name));
230 log_path.Append(base::FilePath(kDiskPrefix + name));
263 const base::FilePath log_path(kLoginLogPath);
311 base::WriteFile(log_path.Append(base_name), output.data(), output.size());
  /external/jsoncpp/
makerelease.py 149 log_path = os.path.join( distcheck_top_dir, 'build-%s.log' % platform )
150 flog = open( log_path, 'wb' )
160 return (status, log_path)
351 build_status, log_path = check_compile( distcheck_top_dir, platform )
352 print 'see build log:', log_path
  /external/chromium_org/chrome/test/chromedriver/
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);
capabilities.h 132 std::string log_path; member in struct:Capabilities
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_flags_test.cc 73 " log_path=aaa"
118 " log_path=eeeeeee"
163 EXPECT_EQ(f->log_path, std::string("aaa"));
208 EXPECT_EQ(f->log_path, std::string("eeeeeee"));
  /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/chromium_org/chrome/browser/extensions/api/log_private/
log_private_api.h 194 void OnStoreLogsCompleted(const base::FilePath& log_path, bool succeeded);
log_private_api_chromeos.cc 520 const base::FilePath& log_path,
524 ->RegisterTempFile(extension_id(), log_path); local
533 log_path,

Completed in 1445 milliseconds

1 2