Home
last modified time | relevance | path

Searched refs:host_fd_ (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish/guest/hals/confirmationui/
DTrustyConfirmationUI.cpp63 host_fd_ = cuttlefish::SharedFD::Open(GetVirtioConsoleDevicePath(), O_RDWR);
64 CHECK(host_fd_->IsOpen()) << "ConfUI: " << GetVirtioConsoleDevicePath() << " is not open.";
65 CHECK(host_fd_->SetTerminalRaw() >= 0)
72 if (host_fd_->IsOpen()) {
79 if (host_fd_->IsOpen()) { in ~TrustyConfirmationUI()
80 host_fd_->Close(); in ~TrustyConfirmationUI()
93 if (!host_fd_->IsOpen()) { in HostMessageFetcherLoop()
99 auto msg = cuttlefish::confui::RecvConfUiMsg(host_fd_); in HostMessageFetcherLoop()
127 cuttlefish::SharedFD fd = host_fd_; in RunSession()
Dguest_session.cpp77 SerializedSend(cuttlefish::confui::SendStartCmd, host_fd_, session_name_, prompt_text_, in PromptUserConfirmation()
170 SerializedSend(cuttlefish::confui::SendStopCmd, host_fd_, GetSessionId()); in PromptUserConfirmation()
178 SerializedSend(cuttlefish::confui::SendStopCmd, host_fd_, GetSessionId()); in PromptUserConfirmation()
203 SerializedSend(cuttlefish::confui::SendUserSelection, host_fd_, GetSessionId(), in DeliverSecureInputEvent()
206 SerializedSend(cuttlefish::confui::SendUserSelection, host_fd_, GetSessionId(), in DeliverSecureInputEvent()
226 if (host_fd_->IsOpen()) { in Abort()
227 SerializedSend(cuttlefish::confui::SendAbortCmd, host_fd_, GetSessionId()); in Abort()
Dguest_session.h61 listener_state_condv_(listener_state_condv), host_fd_{host_fd},
123 cuttlefish::SharedFD host_fd_; variable
DTrustyConfirmationUI.h101 cuttlefish::SharedFD host_fd_; variable