Home | History | Annotate | Download | only in terminal

Lines Matching defs:Stderr

32 // terminal isn't detected on stdout/stderr (generally because it's a pipe or
65 // the logger can use this interface to print to stderr without
199 // StdioInterface represents a set of stdin/stdout/stderr Reader/Writers
203 Stderr() io.Writer
206 // StdioImpl uses the OS stdin/stdout/stderr to implement StdioInterface
211 func (StdioImpl) Stderr() io.Writer { return os.Stderr }
218 stderr io.Writer
221 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface {
222 return customStdio{stdin, stdout, stderr}
227 func (c customStdio) Stderr() io.Writer { return c.stderr }