• Home
  • Raw
  • Download

Lines Matching refs:command

68     Command command(KernelLogMonitorBinary());  in Commands()  local
69 command.AddParameter("-log_pipe_fd=", fifo_); in Commands()
72 command.AddParameter("-subscriber_fds="); in Commands()
75 command.AppendToLastParameter(","); in Commands()
77 command.AppendToLastParameter(event_pipe_write_ends_[i]); in Commands()
81 return single_element_emplace(std::move(command)); in Commands()
171 Command command(RootCanalBinary()); in Commands() local
174 command.AddParameter(config_.rootcanal_test_port()); in Commands()
176 command.AddParameter(config_.rootcanal_hci_port()); in Commands()
178 command.AddParameter(config_.rootcanal_link_port()); in Commands()
180 command.AddParameter("--controller_properties_file=", in Commands()
183 command.AddParameter("--default_commands_file=", in Commands()
187 commands.emplace_back(log_tee_.CreateLogTee(command, "rootcanal")); in Commands()
188 commands.emplace_back(std::move(command)); in Commands()
412 Command command(HostBinaryPath("bt_connector")); in Commands() local
413 command.AddParameter("-bt_out=", fifos_[0]); in Commands()
414 command.AddParameter("-bt_in=", fifos_[1]); in Commands()
415 command.AddParameter("-hci_port=", config_.rootcanal_hci_port()); in Commands()
416 command.AddParameter("-link_port=", config_.rootcanal_link_port()); in Commands()
417 command.AddParameter("-test_port=", config_.rootcanal_test_port()); in Commands()
418 return single_element_emplace(std::move(command)); in Commands()
460 Command command(HostBinaryPath("secure_env")); in Commands() local
461 command.AddParameter("-confui_server_fd=", confui_server_fd_); in Commands()
462 command.AddParameter("-keymaster_fd_out=", fifos_[0]); in Commands()
463 command.AddParameter("-keymaster_fd_in=", fifos_[1]); in Commands()
464 command.AddParameter("-gatekeeper_fd_out=", fifos_[2]); in Commands()
465 command.AddParameter("-gatekeeper_fd_in=", fifos_[3]); in Commands()
469 command.AddParameter("-keymint_impl=", secure_keymint ? "tpm" : "software"); in Commands()
472 command.AddParameter("-gatekeeper_impl=", gatekeeper_impl); in Commands()
474 command.AddParameter("-kernel_events_fd=", kernel_log_pipe_); in Commands()
476 return single_element_emplace(std::move(command)); in Commands()