type io.Writer

330 uses

	io (current package)
		io.go#L96: type Writer interface {
		io.go#L129: 	Writer
		io.go#L140: 	Writer
		io.go#L147: 	Writer
		io.go#L167: 	Writer
		io.go#L174: 	Writer
		io.go#L197: 	WriteTo(w Writer) (n int64, err error)
		io.go#L310: func WriteString(w Writer, s string) (n int, err error) {
		io.go#L360: func CopyN(dst Writer, src Reader, n int64) (written int64, err error) {
		io.go#L384: func Copy(dst Writer, src Reader) (written int64, err error) {
		io.go#L395: func CopyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
		io.go#L404: func copyBuffer(dst Writer, src Reader, buf []byte) (written int64, err error) {
		io.go#L562: func TeeReader(r Reader, w Writer) Reader {
		io.go#L568: 	w Writer
		io.go#L583: var Discard Writer = discard{}
		multi.go#L55: 	writers []Writer
		multi.go#L102: func MultiWriter(writers ...Writer) Writer {
		multi.go#L103: 	allWriters := make([]Writer, 0, len(writers))

	io/ioutil
		ioutil.go#L84: var Discard io.Writer = io.Discard

	bufio
		bufio.go#L510: func (b *Reader) WriteTo(w io.Writer) (n int64, err error) {
		bufio.go#L555: func (b *Reader) writeBuf(w io.Writer) (int64, error) {
		bufio.go#L576: 	wr  io.Writer
		bufio.go#L582: func NewWriterSize(w io.Writer, size int) *Writer {
		bufio.go#L600: func NewWriter(w io.Writer) *Writer {
		bufio.go#L611: func (b *Writer) Reset(w io.Writer) {

	bytes
		buffer.go#L236: func (b *Buffer) WriteTo(w io.Writer) (n int64, err error) {
		reader.go#L138: func (r *Reader) WriteTo(w io.Writer) (n int64, err error) {

	compress/flate
		deflate.go#L578: func (d *compressor) init(w io.Writer, level int) (err error) {
		deflate.go#L611: func (d *compressor) reset(w io.Writer) {
		deflate.go#L669: func NewWriter(w io.Writer, level int) (*Writer, error) {
		deflate.go#L683: func NewWriterDict(w io.Writer, level int, dict []byte) (*Writer, error) {
		deflate.go#L695: 	w io.Writer
		deflate.go#L738: func (w *Writer) Reset(dst io.Writer) {
		huffman_bit_writer.go#L75: 	writer io.Writer
		huffman_bit_writer.go#L94: func newHuffmanBitWriter(w io.Writer) *huffmanBitWriter {
		huffman_bit_writer.go#L106: func (w *huffmanBitWriter) reset(writer io.Writer) {

	compress/gzip
		gzip.go#L30: 	w           io.Writer
		gzip.go#L49: func NewWriter(w io.Writer) *Writer {
		gzip.go#L60: func NewWriterLevel(w io.Writer, level int) (*Writer, error) {
		gzip.go#L69: func (z *Writer) init(w io.Writer, level int) {
		gzip.go#L88: func (z *Writer) Reset(w io.Writer) {

	crypto/cipher
		io.go#L32: 	W   io.Writer

	crypto/tls
		common.go#L725: 	KeyLogWriter io.Writer

	encoding/base64
		base64.go#L186: 	w    io.Writer
		base64.go#L255: func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser {

	encoding/binary
		binary.go#L271: func Write(w io.Writer, order ByteOrder, data any) error {

	encoding/hex
		hex.go#L141: 	w   io.Writer
		hex.go#L147: func NewEncoder(w io.Writer) io.Writer {
		hex.go#L215: func Dumper(w io.Writer) io.WriteCloser {
		hex.go#L220: 	w          io.Writer

	encoding/json
		stream.go#L182: 	w          io.Writer
		stream.go#L192: func NewEncoder(w io.Writer) *Encoder {

	encoding/pem
		pem.go#L188: 	out  io.Writer
		pem.go#L232: func writeHeader(out io.Writer, k, v string) error {
		pem.go#L238: func Encode(out io.Writer, b *Block) error {

	encoding/xml
		marshal.go#L141: func NewEncoder(w io.Writer) *Encoder {
		xml.go#L1902: func EscapeText(w io.Writer, s []byte) error {
		xml.go#L1909: func escapeText(w io.Writer, s []byte, escapeNewline bool) error {
		xml.go#L1996: func Escape(w io.Writer, s []byte) {
		xml.go#L2008: func emitCDATA(w io.Writer, s []byte) error {

	flag
		flag.go#L340: 	output        io.Writer // nil means stderr; use Output() accessor
		flag.go#L367: func (f *FlagSet) Output() io.Writer {
		flag.go#L386: func (f *FlagSet) SetOutput(output io.Writer) {

	fmt
		print.go#L202: func Fprintf(w io.Writer, format string, a ...any) (n int, err error) {
		print.go#L230: func Fprint(w io.Writer, a ...any) (n int, err error) {
		print.go#L262: func Fprintln(w io.Writer, a ...any) (n int, err error) {

	github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
		encode.go#L47: func (e *Encoder) Encode(w io.Writer, msg Message) (err error) {
		encode.go#L51: 	var writer io.Writer = e.messageBuf
		encode.go#L114: func encodePrelude(w io.Writer, crc hash.Hash32, headersLen, payloadLen uint32) error {
		encode.go#L142: func EncodeHeaders(w io.Writer, headers Headers) error {
		encode.go#L160: func binaryWriteFields(w io.Writer, order binary.ByteOrder, vs ...interface{}) error {
		header.go#L168: func (v headerName) encode(w io.Writer) error {
		header_value.go#L65: func (r rawValue) encodeScalar(w io.Writer, v interface{}) error {
		header_value.go#L72: func (r rawValue) encodeFixedSlice(w io.Writer, v []byte) error {
		header_value.go#L79: func (r rawValue) encodeBytes(w io.Writer, v []byte) error {
		header_value.go#L101: func (r rawValue) encodeString(w io.Writer, v string) error {
		header_value.go#L164: 	encode(io.Writer) error
		header_value.go#L190: func (v BoolValue) encode(w io.Writer) error {
		header_value.go#L214: func (v Int8Value) encode(w io.Writer) error {
		header_value.go#L252: func (v Int16Value) encode(w io.Writer) error {
		header_value.go#L289: func (v Int32Value) encode(w io.Writer) error {
		header_value.go#L326: func (v Int64Value) encode(w io.Writer) error {
		header_value.go#L363: func (v BytesValue) encode(w io.Writer) error {
		header_value.go#L401: func (v StringValue) encode(w io.Writer) error {
		header_value.go#L446: func (v TimestampValue) encode(w io.Writer) error {
		header_value.go#L510: func (v UUIDValue) encode(w io.Writer) error {

	github.com/aws/aws-sdk-go-v2/service/internal/checksum
		middleware_compute_input_checksum.go#L401: 	var batchHasher io.Writer = hasher

	github.com/aws/smithy-go/logging
		logger.go#L78: func NewStandardLogger(writer io.Writer) *StandardLogger {

	github.com/aws/smithy-go/middleware
		stack.go#L178: 	io.Writer

	github.com/aws/smithy-go/transport/http/internal/io
		safe.go#L29: func (r *safeWriteToReadCloser) WriteTo(w io.Writer) (int64, error) {

	github.com/go-pg/migrations/v8
		migrations.go#L23: 	CopyTo(w io.Writer, query interface{}, params ...interface{}) (orm.Result, error)

	github.com/go-pg/pg/v10
		base.go#L445: func (db *baseDB) CopyTo(w io.Writer, query interface{}, params ...interface{}) (res Result, err error) {
		base.go#L455: 	ctx context.Context, cn *pool.Conn, w io.Writer, query interface{}, params ...interface{},
		messages.go#L1147: func readCopyData(rd *pool.ReaderContext, w io.Writer) (*result, error) {
		pg.go#L119: 	CopyTo(w io.Writer, query interface{}, params ...interface{}) (Result, error)
		tx.go#L301: func (tx *Tx) CopyTo(w io.Writer, query interface{}, params ...interface{}) (res Result, err error) {

	github.com/go-pg/pg/v10/orm
		orm.go#L54: 	CopyTo(w io.Writer, query interface{}, params ...interface{}) (Result, error)
		query.go#L1293: func (q *Query) CopyTo(w io.Writer, query interface{}, params ...interface{}) (Result, error) {

	github.com/go-pg/pg/v10/pgjson
		json.go#L20: func (StdProvider) NewEncoder(w io.Writer) Encoder {
		provider.go#L16: 	NewEncoder(w io.Writer) Encoder
		provider.go#L37: func NewEncoder(w io.Writer) Encoder {

	github.com/golang/protobuf/jsonpb
		encode.go#L66: func (jm *Marshaler) Marshal(w io.Writer, m proto.Message) error {

	github.com/golang/protobuf/proto
		text_encode.go#L32: func (tm *TextMarshaler) Marshal(w io.Writer, m Message) error {
		text_encode.go#L97: func MarshalText(w io.Writer, m Message) error { return defaultTextMarshaler.Marshal(w, m) }
		text_encode.go#L103: func CompactText(w io.Writer, m Message) error { return compactTextMarshaler.Marshal(w, m) }

	github.com/kr/text
		indent.go#L30: 	w   io.Writer
		indent.go#L41: func NewIndentWriter(w io.Writer, pre ...[]byte) io.Writer {

	github.com/vmihailenco/bufpool
		buffer.go#L173: func (b *Buffer) WriteTo(w io.Writer) (n int64, err error) {

	github.com/vmihailenco/msgpack/v5
		encode.go#L23: 	io.Writer
		encode.go#L28: 	io.Writer
		encode.go#L31: func newByteWriter(w io.Writer) byteWriter {
		encode.go#L90: func NewEncoder(w io.Writer) *Encoder {
		encode.go#L99: func (e *Encoder) Writer() io.Writer {
		encode.go#L104: func (e *Encoder) Reset(w io.Writer) {
		encode.go#L109: func (e *Encoder) ResetDict(w io.Writer, dict map[string]int) {
		encode.go#L124: func (e *Encoder) resetWriter(w io.Writer) {

	go.pact.im/x/goupdate
		htmlgen.go#L21: 	w io.Writer
		htmlgen.go#L26: func generateHTML(w io.Writer, r *report) error {
		textgen.go#L16: func generateText(w io.Writer, r *report) error {
		textgen.go#L327: 	wr     io.Writer
		textgen.go#L328: 	indent io.Writer
		textgen.go#L332: func newSectionIndentWriter(wr io.Writer, pre string) *sectionIndentWriter {
		textgen.go#L352: func (w *sectionIndentWriter) writer() io.Writer {

	go.pact.im/x/zaplog
		zaplog.go#L12: func New(w io.Writer) *zap.Logger {

	go.uber.org/goleak
		testmain.go#L32: 	_osStderr io.Writer = os.Stderr

	go.uber.org/multierr
		error.go#L292: func (merr *multiError) writeSingleline(w io.Writer) {
		error.go#L304: func (merr *multiError) writeMultiline(w io.Writer) {
		error.go#L314: func writePrefixLine(w io.Writer, prefix []byte, s string) {

	go.uber.org/zap/zapcore
		encoder.go#L340: 	NewReflectedEncoder func(io.Writer) ReflectedEncoder `json:"-" yaml:"-"`
		reflected_encoder.go#L36: func defaultReflectedEncoder(w io.Writer) ReflectedEncoder {
		write_syncer.go#L33: 	io.Writer
		write_syncer.go#L40: func AddSync(w io.Writer) WriteSyncer {
		write_syncer.go#L79: 	io.Writer

	go/ast
		print.go#L39: func Fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) error {
		print.go#L43: func fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) (err error) {
		print.go#L78: 	output io.Writer

	go/doc
		comment.go#L33: func commentEscape(w io.Writer, text string, nice bool) {
		comment.go#L98: func emphasize(w io.Writer, line string, words map[string]string, nice bool) {
		comment.go#L307: func ToHTML(w io.Writer, text string, words map[string]string) {
		comment.go#L424: func ToText(w io.Writer, text string, indent, preIndent string, width int) {
		comment.go#L461: 	out       io.Writer

	go/format
		format.go#L54: func Node(dst io.Writer, fset *token.FileSet, node any) error {

	go/printer
		printer.go#L1180: 	output io.Writer
		printer.go#L1312: func (cfg *Config) fprint(output io.Writer, fset *token.FileSet, node any, nodeSizes map[ast.Node]int) (err error) {
		printer.go#L1377: func (cfg *Config) Fprint(output io.Writer, fset *token.FileSet, node any) error {
		printer.go#L1386: func Fprint(output io.Writer, fset *token.FileSet, node any) error {

	go/scanner
		errors.go#L116: func PrintError(w io.Writer, err error) {

	go/types
		scope.go#L214: func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {

	golang.org/x/crypto/blake2b
		blake2x.go#L18: 	io.Writer

	golang.org/x/crypto/sha3
		shake.go#L28: 	io.Writer

	golang.org/x/exp/apidiff
		report.go#L38: func (r Report) Text(w io.Writer) error {
		report.go#L45: func (r Report) TextIncompatible(w io.Writer, withHeader bool) error {
		report.go#L52: func (r Report) TextCompatible(w io.Writer) error {
		report.go#L56: func (r Report) writeMessages(w io.Writer, header string, msgs []string) error {

	golang.org/x/net/http2
		frame.go#L290: 	w    io.Writer
		frame.go#L430: func NewFramer(w io.Writer, r io.Reader) *Framer {
		http2.go#L245: 	w  io.Writer     // immutable
		http2.go#L249: func newBufferedWriter(w io.Writer) *bufferedWriter {
		pipe.go#L29: 	io.Writer

	golang.org/x/net/http2/hpack
		encode.go#L29: 	w               io.Writer
		encode.go#L35: func NewEncoder(w io.Writer) *Encoder {
		huffman.go#L21: func HuffmanDecode(w io.Writer, v []byte) (int, error) {

	golang.org/x/net/trace
		events.go#L374: func printStackRecord(w io.Writer, stk []uintptr) {
		trace.go#L180: func Render(w io.Writer, req *http.Request, sensitive bool) {

	golang.org/x/text/transform
		transform.go#L210: 	w   io.Writer
		transform.go#L221: func NewWriter(w io.Writer, t Transformer) *Writer {

	golang.org/x/text/unicode/norm
		readwriter.go#L11: 	w   io.Writer
		readwriter.go#L66: func (f Form) Writer(w io.Writer) io.WriteCloser {

	golang.org/x/tools/go/gcexportdata
		gcexportdata.go#L156: func Write(out io.Writer, fset *token.FileSet, pkg *types.Package) error {
		gcexportdata.go#L185: func WriteBundle(out io.Writer, fset *token.FileSet, pkgs []*types.Package) error {

	golang.org/x/tools/internal/event/keys
		keys.go#L30: func (k *Value) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L65: func (k *Tag) Format(w io.Writer, buf []byte, l label.Label) {}
		keys.go#L84: func (k *Int) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L116: func (k *Int8) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L148: func (k *Int16) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L180: func (k *Int32) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L212: func (k *Int64) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L244: func (k *UInt) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L276: func (k *UInt8) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L308: func (k *UInt16) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L340: func (k *UInt32) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L372: func (k *UInt64) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L404: func (k *Float32) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L440: func (k *Float64) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L476: func (k *String) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L508: func (k *Boolean) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L545: func (k *Error) Format(w io.Writer, buf []byte, l label.Label) {

	golang.org/x/tools/internal/event/label
		label.go#L27: 	Format(w io.Writer, buf []byte, l Label)

	golang.org/x/tools/internal/gcimporter
		iexport.go#L73: func IExportData(out io.Writer, fset *token.FileSet, pkg *types.Package) error {
		iexport.go#L79: func IExportBundle(out io.Writer, fset *token.FileSet, pkgs []*types.Package) error {
		iexport.go#L84: func iexportCommon(out io.Writer, fset *token.FileSet, bundle, shallow bool, version int, pkgs []*types.Package) (err error) {

	golang.org/x/tools/internal/gocommand
		invoke.go#L63: func (runner *Runner) RunPiped(ctx context.Context, inv Invocation, stdout, stderr io.Writer) error {
		invoke.go#L104: func (runner *Runner) runPiped(ctx context.Context, inv Invocation, stdout, stderr io.Writer) (error, error) {
		invoke.go#L155: func (i *Invocation) runWithFriendlyError(ctx context.Context, stdout, stderr io.Writer) (friendlyError error, rawError error) {
		invoke.go#L171: func (i *Invocation) run(ctx context.Context, stdout, stderr io.Writer) error {

	golang.org/x/tools/internal/pkgbits
		encoder.go#L59: func (pw *PkgEncoder) DumpTo(out0 io.Writer) (fingerprint [8]byte) {

	google.golang.org/grpc
		rpc_util.go#L49: 	Do(w io.Writer, p []byte) error
		rpc_util.go#L89: func (c *gzipCompressor) Do(w io.Writer, p []byte) error {

	google.golang.org/grpc/encoding
		encoding.go#L45: 	Compress(w io.Writer) (io.WriteCloser, error)

	google.golang.org/grpc/grpclog
		loggerv2.go#L110: func NewLoggerV2(infoW, warningW, errorW io.Writer) LoggerV2 {
		loggerv2.go#L116: func NewLoggerV2WithVerbosity(infoW, warningW, errorW io.Writer, v int) LoggerV2 {
		loggerv2.go#L125: func newLoggerV2WithConfig(infoW, warningW, errorW io.Writer, c loggerV2Config) LoggerV2 {

	google.golang.org/grpc/internal/binarylog
		sink.go#L61: func newWriterSink(w io.Writer) Sink {
		sink.go#L66: 	out io.Writer

	hash
		hash.go#L29: 	io.Writer

	html/template
		escape.go#L926: func HTMLEscape(w io.Writer, b []byte) {
		escape.go#L942: func JSEscape(w io.Writer, b []byte) {
		template.go#L120: func (t *Template) Execute(wr io.Writer, data any) error {
		template.go#L134: func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {

	internal/profile
		profile.go#L219: func (p *Profile) Write(w io.Writer) error {

	log
		log.go#L57: 	out       io.Writer  // destination for output
		log.go#L67: func New(out io.Writer, prefix string, flag int) *Logger {
		log.go#L76: func (l *Logger) SetOutput(w io.Writer) {
		log.go#L296: func (l *Logger) Writer() io.Writer {
		log.go#L303: func SetOutput(w io.Writer) {
		log.go#L330: func Writer() io.Writer {

	mime/multipart
		writer.go#L20: 	w        io.Writer
		writer.go#L27: func NewWriter(w io.Writer) *Writer {
		writer.go#L97: func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {
		writer.go#L140: func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error) {
		writer.go#L151: func (w *Writer) CreateFormField(fieldname string) (io.Writer, error) {

	mime/quotedprintable
		writer.go#L17: 	w    io.Writer
		writer.go#L24: func NewWriter(w io.Writer) *Writer {

	net
		net.go#L655: 	io.Writer
		net.go#L660: func genericReadFrom(w io.Writer, r io.Reader) (n int64, err error) {
		net.go#L712: func (v *Buffers) WriteTo(w io.Writer) (n int64, err error) {

	net/http
		h2_bundle.go#L1619: 	w    io.Writer
		h2_bundle.go#L1762: func http2NewFramer(w io.Writer, r io.Reader) *http2Framer {
		h2_bundle.go#L3454: 	w  io.Writer     // immutable
		h2_bundle.go#L3458: func http2newBufferedWriter(w io.Writer) *http2bufferedWriter {
		h2_bundle.go#L3616: 	io.Writer
		header.go#L84: func (h Header) Write(w io.Writer) error {
		header.go#L88: func (h Header) write(w io.Writer, trace *httptrace.ClientTrace) error {
		header.go#L136: 	w io.Writer
		header.go#L185: func (h Header) WriteSubset(w io.Writer, exclude map[string]bool) error {
		header.go#L189: func (h Header) writeSubset(w io.Writer, exclude map[string]bool, trace *httptrace.ClientTrace) error {
		http.go#L110: func (noBody) WriteTo(io.Writer) (int64, error) { return 0, nil }
		request.go#L527: func (r *Request) Write(w io.Writer) error {
		request.go#L537: func (r *Request) WriteProxy(w io.Writer) error {
		request.go#L548: func (r *Request) write(w io.Writer, usingProxy bool, extraHeaders Header, waitForContinue func() bool) (err error) {
		response.go#L242: func (r *Response) Write(w io.Writer) error {
		response.go#L348: 	_, ok := r.Body.(io.Writer)
		server.go#L561: 	io.Writer
		server.go#L833: func newBufioWriterSize(w io.Writer, size int) *bufio.Writer {
		transfer.go#L275: func (t *transferWriter) writeHeader(w io.Writer, trace *httptrace.ClientTrace) error {
		transfer.go#L335: func (t *transferWriter) writeBody(w io.Writer) (err error) {
		transfer.go#L410: func (t *transferWriter) doBodyCopy(dst io.Writer, src io.Reader) (n int64, err error) {
		transfer.go#L1103: type bufioFlushWriter struct{ w io.Writer }

	net/http/httputil
		dump.go#L42: 	io.Writer
		dump.go#L273: 		var dest io.Writer = &b
		httputil.go#L35: func NewChunkedWriter(w io.Writer) io.WriteCloser {
		persist.go#L240: 	writeReq func(*http.Request, io.Writer) error
		reverseproxy.go#L428: func (p *ReverseProxy) copyResponse(dst io.Writer, src io.Reader, flushInterval time.Duration) error {
		reverseproxy.go#L456: func (p *ReverseProxy) copyBuffer(dst io.Writer, src io.Reader, buf []byte) (int64, error) {
		reverseproxy.go#L496: 	io.Writer

	net/http/internal
		chunked.go#L189: func NewChunkedWriter(w io.Writer) io.WriteCloser {
		chunked.go#L196: 	Wire io.Writer

	net/http/pprof
		pprof.go#L407: func indexTmplExecute(w io.Writer, profiles []profileEntry) error {

	os
		file.go#L166: 	io.Writer

	os/exec
		exec.go#L115: 	Stdout io.Writer
		exec.go#L116: 	Stderr io.Writer
		exec.go#L289: func (c *Cmd) writerDescriptor(w io.Writer) (f *os.File, err error) {

	runtime/pprof
		pprof.go#L139: 	write func(io.Writer, int) error
		pprof.go#L327: func (p *Profile) WriteTo(w io.Writer, debug int) error {
		pprof.go#L378: func printCountCycleProfile(w io.Writer, countName, cycleName string, scaler func(int64, float64) (int64, float64), records []runtime.BlockProfileRecord) error {
		pprof.go#L405: func printCountProfile(w io.Writer, debug int, name string, p countProfile) error {
		pprof.go#L493: func printStackRecord(w io.Writer, stk []uintptr, allFrames bool) {
		pprof.go#L525: func WriteHeapProfile(w io.Writer) error {
		pprof.go#L536: func writeHeap(w io.Writer, debug int) error {
		pprof.go#L542: func writeAlloc(w io.Writer, debug int) error {
		pprof.go#L546: func writeHeapInternal(w io.Writer, debug int, defaultSampleType string) error {
		pprof.go#L663: func writeThreadCreate(w io.Writer, debug int) error {
		pprof.go#L681: func writeGoroutine(w io.Writer, debug int) error {
		pprof.go#L688: func writeGoroutineStacks(w io.Writer) error {
		pprof.go#L709: func writeRuntimeProfile(w io.Writer, debug int, name string, fetch func([]runtime.StackRecord, []unsafe.Pointer) (int, bool)) error {
		pprof.go#L762: func StartCPUProfile(w io.Writer) error {
		pprof.go#L796: func profileWriter(w io.Writer) {
		pprof.go#L846: func writeBlock(w io.Writer, debug int) error {
		pprof.go#L859: func writeMutex(w io.Writer, debug int) error {
		pprof.go#L864: func writeProfileInternal(w io.Writer, debug int, name string, runtimeProfile func([]runtime.BlockProfileRecord) (int, bool), scaleProfile func(int64, float64) (int64, float64)) error {
		pprof_rusage.go#L17: func addMaxRSS(w io.Writer) {
		proto.go#L36: 	w         io.Writer
		proto.go#L253: func newProfileBuilder(w io.Writer) *profileBuilder {
		protomem.go#L15: func writeHeapProto(w io.Writer, p []runtime.MemProfileRecord, rate int64, defaultSampleType string) error {

	runtime/trace
		trace.go#L120: func Start(w io.Writer) error {

	strings
		reader.go#L137: func (r *Reader) WriteTo(w io.Writer) (n int64, err error) {
		replace.go#L23: 	WriteString(w io.Writer, s string) (n int, err error)
		replace.go#L101: func (r *Replacer) WriteString(w io.Writer, s string) (n int, err error) {
		replace.go#L315: 	w io.Writer
		replace.go#L322: func getStringWriter(w io.Writer) io.StringWriter {
		replace.go#L336: func (r *genericReplacer) WriteString(w io.Writer, s string) (n int, err error) {
		replace.go#L410: func (r *singleStringReplacer) WriteString(w io.Writer, s string) (n int, err error) {
		replace.go#L457: func (r *byteReplacer) WriteString(w io.Writer, s string) (n int, err error) {
		replace.go#L541: func (r *byteStringReplacer) WriteString(w io.Writer, s string) (n int, err error) {

	testing
		benchmark.go#L461: func prettyPrint(w io.Writer, x float64, unit string) {
		fuzz.go#L276: 	run := func(captureOut io.Writer, e corpusEntry) (ok bool) {
		testing.go#L443: 	w          io.Writer
		testing.go#L448: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L492: 	w           io.Writer            // For flushToParent.
		testing.go#L1572: func (f matchStringOnly) StartCPUProfile(w io.Writer) error           { return errMain }
		testing.go#L1574: func (f matchStringOnly) WriteProfileTo(string, io.Writer, int) error { return errMain }
		testing.go#L1576: func (f matchStringOnly) StartTestLog(io.Writer)                      {}
		testing.go#L1626: 	StartCPUProfile(io.Writer) error
		testing.go#L1628: 	StartTestLog(io.Writer)
		testing.go#L1630: 	WriteProfileTo(string, io.Writer, int) error

	testing/iotest
		logger.go#L14: 	w      io.Writer
		logger.go#L30: func NewWriteLogger(prefix string, w io.Writer) io.Writer {
		writer.go#L11: func TruncateWriter(w io.Writer, n int64) io.Writer {
		writer.go#L16: 	w io.Writer

	text/tabwriter
		tabwriter.go#L93: 	output   io.Writer
		tabwriter.go#L211: func (b *Writer) Init(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
		tabwriter.go#L607: func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {

	text/template
		exec.go#L36: 	wr    io.Writer
		exec.go#L182: func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {
		exec.go#L200: func (t *Template) Execute(wr io.Writer, data any) error {
		exec.go#L204: func (t *Template) execute(wr io.Writer, data any) (err error) {
		funcs.go#L590: func HTMLEscape(w io.Writer, b []byte) {
		funcs.go#L650: func JSEscape(w io.Writer, b []byte) {

	vendor/golang.org/x/net/http2/hpack
		encode.go#L29: 	w               io.Writer
		encode.go#L35: func NewEncoder(w io.Writer) *Encoder {
		huffman.go#L21: func HuffmanDecode(w io.Writer, v []byte) (int, error) {

	vendor/golang.org/x/text/transform
		transform.go#L210: 	w   io.Writer
		transform.go#L221: func NewWriter(w io.Writer, t Transformer) *Writer {

	vendor/golang.org/x/text/unicode/norm
		readwriter.go#L11: 	w   io.Writer
		readwriter.go#L66: func (f Form) Writer(w io.Writer) io.WriteCloser {