Home
last modified time | relevance | path

Searched defs:customStdio (Results 1 – 2 of 2) sorted by relevance

/build/soong/ui/terminal/
Dstdio.go41 type customStdio struct { struct
42 stdin io.Reader
43 stdout io.Writer
44 stderr io.Writer
51 func (c customStdio) Stdin() io.Reader { return c.stdin }
52 func (c customStdio) Stdout() io.Writer { return c.stdout }
53 func (c customStdio) Stderr() io.Writer { return c.stderr }
/build/soong/cmd/soong_ui/
Dmain.go429 func customStdio() terminal.StdioInterface { func