HomeSort by relevance Sort by last modified time
    Searched full:log_path (Results 1 - 25 of 47) 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/compiler-rt/test/asan/TestCases/
log-path_test.cc 10 // Good log_path.
12 // RUN: env ASAN_OPTIONS=log_path=%t.log not %run %t 2> %t.out
15 // Invalid log_path.
16 // RUN: env ASAN_OPTIONS=log_path=/INVALID not %run %t 2> %t.out
19 // Too long log_path.
20 // RUN: env ASAN_OPTIONS=log_path=`for((i=0;i<10000;i++)); do echo -n $i; done` \
26 // RUN: env ASAN_OPTIONS=log_path=%t.log %run %t ARG ARG ARG
29 // FIXME: log_path is not supported on Windows yet.
log_path_fork_test.cc.disabled 4 // RUN: env ASAN_OPTIONS="log_path=%t.log verbosity=1" not %run %t 2> %t.out
  /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/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/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 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/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')
167 with open(self.log_path) as f:
214 with open(self.log_path) as f
    [all...]
  /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/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/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/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/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/
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);
capabilities.h 110 std::string log_path; member in struct:Capabilities
run_buildbot_steps.py 113 log_path = os.path.join(temp_dir, log_name)
114 with open(log_path, 'wb') as log_file:
116 if slave_utils.GSUtilCopyFile(log_path, GS_CHROMEDRIVER_DATA_BUCKET):
  /external/compiler-rt/lib/sanitizer_common/
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 "
sanitizer_flags.h 39 const char *log_path; member in struct:__sanitizer::CommonFlags
  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.cc 227 const base::FilePath log_path(kLogPath);
229 log_path.Append(base::FilePath(kUptimePrefix + name));
231 log_path.Append(base::FilePath(kDiskPrefix + name));
264 const base::FilePath log_path(kLoginLogPath);
312 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/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");

Completed in 514 milliseconds

1 2