/build/soong/ui/terminal/ |
D | stdio.go | 28 Stdout() io.Writer 29 Stderr() io.Writer 36 func (StdioImpl) Stdout() io.Writer { return os.Stdout } 37 func (StdioImpl) Stderr() io.Writer { return os.Stderr } 43 stdout io.Writer 44 stderr io.Writer 47 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface { argument 52 func (c customStdio) Stdout() io.Writer { return c.stdout } 53 func (c customStdio) Stderr() io.Writer { return c.stderr }
|
D | simple_status.go | 25 writer io.Writer 32 func NewSimpleStatusOutput(w io.Writer, formatter formatter) status.StatusOutput { argument
|
D | util.go | 25 func isSmartTerminal(w io.Writer) bool { argument 41 func termSize(w io.Writer) (width int, height int, ok bool) { argument
|
D | status.go | 29 func NewStatusOutput(w io.Writer, statusFormat string, forceSimpleOutput, quietBuild bool) status.S… argument
|
/build/soong/third_party/zip/ |
D | writer.go | 19 type Writer struct { struct 33 func NewWriter(w io.Writer) *Writer { argument 34 return &Writer{cw: &countWriter{w: bufio.NewWriter(w)}} 41 func (w *Writer) SetOffset(n int64) { argument 50 func (w *Writer) Flush() error { argument 51 return w.cw.w.(*bufio.Writer).Flush() 56 func (w *Writer) Close() error { argument 184 return w.cw.w.(*bufio.Writer).Flush() 194 func (w *Writer) Create(name string) (io.Writer, error) { argument 204 func (w *Writer) CreateHeader(fh *FileHeader) (io.Writer, error) { argument [all …]
|
D | register.go | 20 type Compressor func(w io.Writer) (io.WriteCloser, error) 31 func newFlateWriter(w io.Writer) io.WriteCloser { argument 32 fw, ok := flateWriterPool.Get().(*flate.Writer) 43 fw *flate.Writer 109 Store: func(w io.Writer) (io.WriteCloser, error) { return &nopCloser{w}, nil }, 110 Deflate: func(w io.Writer) (io.WriteCloser, error) { return newFlateWriter(w), nil },
|
D | android.go | 25 func (w *Writer) CopyFrom(orig *File, newName string) error { 131 func (w *Writer) CreateCompressedHeader(fh *FileHeader) (io.WriteCloser, error) { 170 func (w *Writer) CreateHeaderAndroid(fh *FileHeader) (io.Writer, error) {
|
D | example_test.go | 88 w.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
|
D | writer_test.go | 127 w := NewWriter(struct{ io.Writer }{&buf}) 143 func testCreate(t *testing.T, w *Writer, wt *WriteTest) { argument
|
/build/soong/cmd/soong_ui/ |
D | main.go | 204 Writer: output, 308 fmt.Fprintf(ctx.Writer, "usage: %s --dumpvar-mode [--abs] <VAR>\n\n", os.Args[0]) 309 …fmt.Fprintln(ctx.Writer, "In dumpvar mode, print the value of the legacy make variable VAR to stdo… 310 fmt.Fprintln(ctx.Writer, "") 312 …fmt.Fprintln(ctx.Writer, "'report_config' is a special case that prints the human-readable config … 313 fmt.Fprintln(ctx.Writer, "from the beginning of the build.") 314 fmt.Fprintln(ctx.Writer, "") 358 fmt.Fprintf(ctx.Writer, "usage: %s --dumpvars-mode [--vars=\"VAR VAR ...\"]\n\n", os.Args[0]) 359 …fmt.Fprintln(ctx.Writer, "In dumpvars mode, dump the values of one or more legacy make variables, … 360 …fmt.Fprintln(ctx.Writer, "shell syntax. The resulting output may be sourced directly into a shell … [all …]
|
/build/soong/ui/build/ |
D | rbe.go | 121 fmt.Fprintln(ctx.Writer, "") 122 fmt.Fprintln(ctx.Writer, fmt.Sprintf("%s", output)) 168 fmt.Fprintln(ctx.Writer, "") 169 fmt.Fprintln(ctx.Writer, "\033[33mWARNING:\033[0m") 170 …fmt.Fprintln(ctx.Writer, fmt.Sprintf("Setting OUT_DIR to a path other than %v may result in slow R… 171 fmt.Fprintln(ctx.Writer, "See http://go/android_rbe_out_dir for a workaround.") 172 fmt.Fprintln(ctx.Writer, "")
|
D | context.go | 38 Writer io.Writer member
|
/build/blueprint/gotestmain/ |
D | gotestmain.go | 157 func (matchString) StartCPUProfile(w io.Writer) error { 164 func (matchString) WriteHeapProfile(w io.Writer) error { 168 func (matchString) WriteProfileTo(string, io.Writer, int) error { 176 func (matchString) StartTestLog(io.Writer) {
|
/build/soong/symbol_inject/ |
D | symbol_inject.go | 54 func InjectStringSymbol(file *File, w io.Writer, symbol, value, from string) error { argument 85 func InjectUint64Symbol(file *File, w io.Writer, symbol string, value uint64) error { argument 101 func copyAndInject(r io.ReaderAt, w io.Writer, offset uint64, buf []byte) (err error) { argument
|
/build/soong/android/ |
D | androidmk.go | 73 Custom func(w io.Writer, name, prefix, moduleDir string, data AndroidMkData) 80 type AndroidMkExtraFunc func(w io.Writer, outputFile Path) 166 type AndroidMkExtraFootersFunc func(w io.Writer, name, prefix, moduleDir string) 461 func (a *AndroidMkEntries) WriteLicenseVariables(w io.Writer) { 619 func (a *AndroidMkEntries) write(w io.Writer) { 733 func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.Module) error { argument 757 func translateGoBinaryModule(ctx SingletonContext, w io.Writer, mod blueprint.Module, argument 795 func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Module, argument 862 func WriteAndroidMkData(w io.Writer, data AndroidMkData) { argument 882 func translateAndroidMkEntriesModule(ctx SingletonContext, w io.Writer, mod blueprint.Module, argument
|
D | makefile_goal.go | 83 func(w io.Writer, name, prefix, moduleDir string) {
|
/build/soong/cmd/javac_wrapper/ |
D | javac_wrapper.go | 63 func Main(out io.Writer, name string, args []string) (int, error) { argument 126 func (proc *processor) process(r io.Reader, w io.Writer) error { 142 func (proc *processor) processLine(w io.Writer, line string) {
|
/build/soong/cmd/run_with_timeout/ |
D | run_with_timeout.go | 68 w io.Writer 91 stdin io.Reader, stdout, stderr io.Writer) error { argument
|
/build/soong/zip/ |
D | zip.go | 53 io.Writer anonMember 222 stderr io.Writer 251 Stderr io.Writer 255 func zipTo(args ZipArgs, w io.Writer) error { argument 363 var out io.Writer = buf 436 func (z *ZipWriter) write(f io.Writer, pathMappings []pathMapping, manifest string, emulateJar, src… 528 var zw io.Writer 820 var fw *flate.Writer 828 if fw, ok = z.compressorPool.Get().(*flate.Writer); ok {
|
/build/soong/bpfix/cmd_lib/ |
D | bpfix.go | 52 func openAndProcess(filename string, out io.Writer, fixRequest bpfix.FixRequest) error { argument 62 func processFile(filename string, in io.Reader, out io.Writer, fixRequest bpfix.FixRequest) error { argument
|
/build/blueprint/bpfmt/ |
D | bpfmt.go | 50 func processFile(filename string, out io.Writer) error { argument 60 func processReader(filename string, in io.Reader, out io.Writer) error { argument
|
/build/soong/phony/ |
D | phony.go | 51 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
|
/build/soong/response/ |
D | response.go | 92 func WriteRspFile(w io.Writer, files []string) error { argument
|
/build/soong/cmd/extract_linker/ |
D | main.go | 114 func bytesToAsm(asm io.Writer, buf []byte) { argument
|
/build/soong/finder/cmd/ |
D | finder.go | 96 var writer io.Writer
|