Home
last modified time | relevance | path

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

/build/soong/ui/terminal/
Dstdio.go41 type customStdio struct { struct
48 return customStdio{stdin, stdout, stderr}
51 func (c customStdio) Stdin() io.Reader { return c.stdin } argument
52 func (c customStdio) Stdout() io.Writer { return c.stdout } argument
53 func (c customStdio) Stderr() io.Writer { return c.stderr } argument
55 var _ StdioInterface = customStdio{}
/build/soong/cmd/soong_ui/
Dmain.go84 stdio: customStdio,
92 stdio: customStdio,
429 func customStdio() terminal.StdioInterface { func