Home | History | Annotate | Download | only in reliability

Lines Matching refs:log_file

151                               std::ofstream& log_file,
250 if (log_file.is_open()) {
251 log_file << url_string;
254 log_file << " error";
257 log_file << " success";
269 if (log_file.is_open()) {
270 log_file << " " << metrics.browser_crash_count \
282 if (log_file.is_open() && g_save_debug_log)
283 SaveDebugLogs(log_file);
286 log_file << " " << "revision=" << last_change;
289 LogOrDeleteNewCrashDumps(log_file, &metrics);
291 if (log_file.is_open()) {
292 log_file << std::endl;
300 void NavigateThroughURLList(std::ofstream& log_file) {
325 NavigateToURLLogResult(url_str, log_file, NULL);
368 std::ofstream& log_file, int index) {
373 log_file << " " << log_id << "=" << saved_log_file_path.value();
379 // paths in the log_file provided.
380 void SaveDebugLogs(std::ofstream& log_file) {
382 SaveDebugLog(g_chrome_log_path, L"chrome_log", log_file, url_count);
383 SaveDebugLog(g_v8_log_path, L"v8_log", log_file, url_count);
384 SaveDebugLog(g_test_log_path, L"test_log", log_file, url_count);
388 // If a log_file is provided, log the crash dump with the given path;
390 void LogOrDeleteCrashDump(std::ofstream& log_file,
397 if (log_file.is_open()) {
399 log_file << " crash_dump=" << crash_dump_file_path.value().c_str();
410 // to log_file.
411 void LogOrDeleteNewCrashDumps(std::ofstream& log_file,
422 LogOrDeleteCrashDump(log_file, path.BaseName());
499 std::ofstream log_file;
502 log_file.open(g_log_file_path.value().c_str());
508 NavigateThroughURLList(log_file);
511 log_file.close();