Lines Matching refs:stdin
19 stdin() io.Reader methodSpec
22 run(cmd *command, stdin io.Reader, stdout io.Writer, stderr io.Writer) error
61 func (env *processEnv) stdin() io.Reader { func
77 func (env *processEnv) run(cmd *command, stdin io.Reader, stdout io.Writer, stderr io.Writer) error…
78 return runCmd(env, cmd, stdin, stdout, stderr)
95 func (env *commandRecordingEnv) stdin() io.Reader { func
102 return env.run(cmd, env.stdin(), env.stdout(), env.stderr())
105 func (env *commandRecordingEnv) run(cmd *command, stdin io.Reader, stdout io.Writer, stderr io.Writ…
108 …err := env.env.run(cmd, stdin, io.MultiWriter(stdout, stdoutBuffer), io.MultiWriter(stderr, stderr…
131 func (env *printingEnv) run(cmd *command, stdin io.Reader, stdout io.Writer, stderr io.Writer) erro…
133 return env.env.run(cmd, stdin, stdout, stderr)