Lines Matching refs:SubprocessProtocol
161 SubprocessProtocol protocol, bool make_pty_raw);
203 SubprocessProtocol protocol_;
217 SubprocessProtocol protocol, bool make_pty_raw) in Subprocess()
323 if (protocol_ == SubprocessProtocol::kShell && in ForkAndExec()
435 if (protocol_ == SubprocessProtocol::kShell) { in ExecInProcess()
464 if (protocol_ == SubprocessProtocol::kNone) { in ConnectProtocolEndpoints()
798 unique_fd ReportError(SubprocessProtocol protocol, const std::string& message) { in ReportError()
806 if (protocol == SubprocessProtocol::kShell) { in ReportError()
815 if (protocol == SubprocessProtocol::kShell) { in ReportError()
828 SubprocessProtocol protocol) { in StartSubprocess()
836 if (protocol == SubprocessProtocol::kNone && type == SubprocessType::kRaw) { in StartSubprocess()
853 SubprocessProtocol protocol, bool make_pty_raw, in StartSubprocess()
854 SubprocessProtocol error_protocol, unique_fd* error_fd) { in StartSubprocess()
857 protocol == SubprocessProtocol::kNone ? "none" : "shell", terminal_type, name.c_str()); in StartSubprocess()
887 unique_fd StartCommandInProcess(std::string name, Command command, SubprocessProtocol protocol) { in StartCommandInProcess()