Home
last modified time | relevance | path

Searched refs:log_file_path (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/cronet/build/android/pylib/results/
H A Dreport_results.py19 log_file_path = os.path.join(constants.GetOutDirectory(), 'test_logs')
20 if not os.path.exists(log_file_path):
21 os.mkdir(log_file_path)
23 log_file_path, re.sub(r'\W', '_', test_type).lower() + '.log')
/aosp_15_r20/external/angle/build/android/pylib/results/
H A Dreport_results.py19 log_file_path = os.path.join(constants.GetOutDirectory(), 'test_logs')
20 if not os.path.exists(log_file_path):
21 os.mkdir(log_file_path)
23 log_file_path, re.sub(r'\W', '_', test_type).lower() + '.log')
/aosp_15_r20/external/angle/build/fuchsia/test/
H A Dlog_manager.py47 log_file_path = os.path.join(self._logs_dir, log_file_name)
48 log_file = open(log_file_path, 'w', buffering=1)
49 self._log_files[log_file_path] = log_file
/aosp_15_r20/external/cronet/build/fuchsia/test/
H A Dlog_manager.py67 log_file_path = os.path.join(self._logs_dir, log_file_name)
68 log_file = open(log_file_path, 'w', buffering=1)
69 self._log_files[log_file_path] = log_file
/aosp_15_r20/packages/modules/adb/client/
Dmain.cpp50 const std::string log_file_path(GetLogFilePath()); in setup_daemon_logging() local
51 int fd = unix_open(log_file_path, O_WRONLY | O_CREAT | O_APPEND, 0640); in setup_daemon_logging()
53 PLOG(FATAL) << "cannot open " << log_file_path; in setup_daemon_logging()
/aosp_15_r20/external/pytorch/.ci/pytorch/
H A Dprint_sccache_log.py4 log_file_path = sys.argv[1] variable
6 with open(log_file_path) as f:
/aosp_15_r20/external/crosvm/src/sys/windows/
H A Dmain.rs173 pipe: if let Some(log_file_path) = &cfg.log_file { in init_log()
177 .open(log_file_path) in init_log()
179 format!("failed to open log file {}", log_file_path) in init_log()
/aosp_15_r20/external/webrtc/rtc_tools/network_tester/
H A Dpacket_logger.cc18 PacketLogger::PacketLogger(const std::string& log_file_path) in PacketLogger() argument
19 : packet_logger_stream_(log_file_path, in PacketLogger()
H A Dtest_controller.cc27 const std::string& log_file_path) in TestController() argument
33 packet_logger_(log_file_path), in TestController()
H A Dpacket_logger.h32 explicit PacketLogger(const std::string& log_file_path);
H A Dtest_controller.h52 const std::string& log_file_path);
/aosp_15_r20/external/cronet/base/
H A Dlogging.cc555 CHECK(settings.log_file_path.empty(), base::NotFatalUntil::M127); in BaseInitLoggingImpl()
561 CHECK(!settings.log_file_path.empty(), base::NotFatalUntil::M127) in BaseInitLoggingImpl()
566 *g_log_file_name = settings.log_file_path; in BaseInitLoggingImpl()
1209 .log_file_path = log_file_name_, in ~ScopedLoggingSettings()
H A Dlogging_unittest.cc250 settings.log_file_path = file_logs_path.value().c_str(); in TestForLogToStderr()
345 settings.log_file_path = file_log_path.value().c_str(); in TEST_F()
H A Dlogging.h238 base::FilePath::StringType log_file_path; member
/aosp_15_r20/tools/test/connectivity/acts/framework/acts/controllers/
Darduino_wifi_dongle.py135 self.log_file_path = os.path.join(
137 self.log_file_fd = open(self.log_file_path, 'a')
Dandroid_device.py1327 log_file_path=None): argument
1341 if log_file_path:
1342 cmd += " --logfile {} &".format(log_file_path)
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_test_utils.py1448 log_file_path=None): argument
1464 if log_file_path:
1465 ad.adb.shell("rm %s" % log_file_path, ignore_status=True)
1473 log_file_path=log_file_path)
1520 log_file_path=None, argument
1562 log_file_path)
1580 log_file_path=None, argument
1620 log_file_path=log_file_path)
/aosp_15_r20/external/zucchini/
H A Dzucchini_main.cc23 settings.log_file_path = nullptr; in InitLogging()
/aosp_15_r20/external/cronet/net/tools/tld_cleanup/
H A Dtld_cleanup.cc63 settings.log_file_path = log_filename.value().c_str(); in main()
/aosp_15_r20/external/cronet/net/tools/testserver/
H A Drun_testserver.cc40 settings.log_file_path = FILE_PATH_LITERAL("testserver.log"); in main()
/aosp_15_r20/packages/modules/Bluetooth/system/gd/hal/
Dsnoop_logger.cc323 std::string get_last_log_path(std::string log_file_path) { return log_file_path.append(".last"); } in get_last_log_path() argument
/aosp_15_r20/system/update_engine/payload_generator/
H A Dgenerate_delta_main.cc514 log_settings.log_file_path = "delta_generator.log"; in Main()