• Home
  • Raw
  • Download

Lines Matching refs:config

69     const vsoc::CuttlefishConfig& config) {  in GetOnSubprocessExitCallback()  argument
70 if (config.restart_subprocesses()) { in GetOnSubprocessExitCallback()
185 const vsoc::CuttlefishConfig& config) { in LaunchE2eTestIfEnabled() argument
186 if (config.run_e2e_test()) { in LaunchE2eTestIfEnabled()
188 cvd::Command(config.e2e_test_binary()), in LaunchE2eTestIfEnabled()
199 bool WriteCuttlefishEnvironment(const vsoc::CuttlefishConfig& config) { in WriteCuttlefishEnvironment() argument
200 auto env = cvd::SharedFD::Open(config.cuttlefish_env_path().c_str(), in WriteCuttlefishEnvironment()
207 config.PerInstancePath(".") + "\"\n"; in WriteCuttlefishEnvironment()
209 if (AdbUsbEnabled(config)) { in WriteCuttlefishEnvironment()
210 config_env += config.serial_number(); in WriteCuttlefishEnvironment()
221 cvd::SharedFD DaemonizeLauncher(const vsoc::CuttlefishConfig& config) { in DaemonizeLauncher() argument
255 auto log_path = config.launcher_log_path(); in DaemonizeLauncher()
351 auto config = InitFilesystemAndCreateConfig(&argc, &argv); in main() local
353 auto vm_manager = vm_manager::VmManager::Get(config->vm_manager(), config); in main()
368 if (!WriteCuttlefishEnvironment(*config)) { in main()
373 if (config->run_as_daemon()) { in main()
374 LOG(INFO) << " Launcher log: " << config->launcher_log_path(); in main()
376 LOG(INFO) << " Android's logcat output: " << config->logcat_path(); in main()
377 LOG(INFO) << " Kernel log: " << config->PerInstancePath("kernel.log"); in main()
378 LOG(INFO) << " Instance configuration: " << GetConfigFilePath(*config); in main()
379 LOG(INFO) << " Instance environment: " << config->cuttlefish_env_path(); in main()
381 << config->console_path(); in main()
383 auto launcher_monitor_path = config->launcher_monitor_socket_path(); in main()
392 if (config->run_as_daemon()) { in main()
393 foreground_launcher_pipe = DaemonizeLauncher(*config); in main()
419 GetKernelLogMonitorCommand(*config, &boot_events_pipe, &adbd_events_pipe), in main()
420 GetOnSubprocessExitCallback(*config)); in main()
425 LaunchLogcatReceiverIfEnabled(*config, &process_monitor); in main()
427 LaunchUsbServerIfEnabled(*config, &process_monitor); in main()
429 LaunchIvServerIfEnabled(&process_monitor, *config); in main()
431 LaunchE2eTestIfEnabled(&process_monitor, boot_state_machine, *config); in main()
435 GetOnSubprocessExitCallback(*config)); in main()
438 LaunchSocketForwardProxyIfEnabled(&process_monitor, *config); in main()
439 LaunchSocketVsockProxyIfEnabled(&process_monitor, *config); in main()
440 LaunchVNCServerIfEnabled(*config, &process_monitor, in main()
441 GetOnSubprocessExitCallback(*config)); in main()
442 LaunchStreamAudioIfEnabled(*config, &process_monitor, in main()
443 GetOnSubprocessExitCallback(*config)); in main()
444 LaunchAdbConnectorIfEnabled(&process_monitor, *config, adbd_events_pipe); in main()