Home
last modified time | relevance | path

Searched refs:Writer (Results 1 – 25 of 50) sorted by relevance

12

/build/soong/ui/terminal/
Dstdio.go28 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 }
Dsimple_status.go25 writer io.Writer
32 func NewSimpleStatusOutput(w io.Writer, formatter formatter) status.StatusOutput { argument
Dutil.go25 func isSmartTerminal(w io.Writer) bool { argument
41 func termSize(w io.Writer) (width int, height int, ok bool) { argument
Dstatus.go29 func NewStatusOutput(w io.Writer, statusFormat string, forceSimpleOutput, quietBuild bool) status.S… argument
/build/soong/third_party/zip/
Dwriter.go19 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 …]
Dregister.go20 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 },
Dandroid.go25 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) {
Dexample_test.go88 w.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
Dwriter_test.go127 w := NewWriter(struct{ io.Writer }{&buf})
143 func testCreate(t *testing.T, w *Writer, wt *WriteTest) { argument
/build/soong/cmd/soong_ui/
Dmain.go204 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/
Drbe.go121 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, "")
Dcontext.go38 Writer io.Writer member
/build/blueprint/gotestmain/
Dgotestmain.go157 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/
Dsymbol_inject.go54 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/
Dandroidmk.go73 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
Dmakefile_goal.go83 func(w io.Writer, name, prefix, moduleDir string) {
/build/soong/cmd/javac_wrapper/
Djavac_wrapper.go63 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/
Drun_with_timeout.go68 w io.Writer
91 stdin io.Reader, stdout, stderr io.Writer) error { argument
/build/soong/zip/
Dzip.go53 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/
Dbpfix.go52 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/
Dbpfmt.go50 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/
Dphony.go51 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
/build/soong/response/
Dresponse.go92 func WriteRspFile(w io.Writer, files []string) error { argument
/build/soong/cmd/extract_linker/
Dmain.go114 func bytesToAsm(asm io.Writer, buf []byte) { argument
/build/soong/finder/cmd/
Dfinder.go96 var writer io.Writer

12