func fmt.Fprintf

36 uses

	fmt (current package)
		print.go#L222: func Fprintf(w io.Writer, format string, a ...any) (n int, err error) {
		print.go#L233: 	return Fprintf(os.Stdout, format, a...)

	math/big
		ftoa.go#L479: 		fmt.Fprintf(s, "%%!%c(*big.Float=%s)", format, x.String())
		intconv.go#L80: 		fmt.Fprintf(s, "%%!%c(big.Int=%s)", ch, x.String())

	mime/multipart
		writer.go#L105: 		fmt.Fprintf(&b, "\r\n--%s\r\n", w.boundary)
		writer.go#L107: 		fmt.Fprintf(&b, "--%s\r\n", w.boundary)
		writer.go#L117: 			fmt.Fprintf(&b, "%s: %s\r\n", k, v)
		writer.go#L120: 	fmt.Fprintf(&b, "\r\n")
		writer.go#L177: 	_, err := fmt.Fprintf(w.w, "\r\n--%s--\r\n", w.boundary)

	net/http
		fs.go#L158: 	fmt.Fprintf(w, "<!doctype html>\n")
		fs.go#L159: 	fmt.Fprintf(w, "<meta name=\"viewport\" content=\"width=device-width\">\n")
		fs.go#L160: 	fmt.Fprintf(w, "<pre>\n")
		fs.go#L170: 		fmt.Fprintf(w, "<a href=\"%s\">%s</a>\n", url.String(), htmlReplacer.Replace(name))
		fs.go#L172: 	fmt.Fprintf(w, "</pre>\n")
		h2_bundle.go#L1606: 				fmt.Fprintf(buf, "0x%x", 1<<i)
		h2_bundle.go#L1611: 		fmt.Fprintf(buf, " stream=%d", h.StreamID)
		h2_bundle.go#L1613: 	fmt.Fprintf(buf, " len=%d", h.Length)
		h2_bundle.go#L3069: 			fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val)
		h2_bundle.go#L3081: 		fmt.Fprintf(&buf, " data=%q", data)
		h2_bundle.go#L3083: 			fmt.Fprintf(&buf, " (%d bytes omitted)", len(f.Data())-max)
		h2_bundle.go#L3089: 		fmt.Fprintf(&buf, " incr=%v", f.Increment)
		h2_bundle.go#L3091: 		fmt.Fprintf(&buf, " ping=%q", f.Data[:])
		h2_bundle.go#L3093: 		fmt.Fprintf(&buf, " LastStreamID=%v ErrCode=%v Debug=%q",
		h2_bundle.go#L3096: 		fmt.Fprintf(&buf, " ErrCode=%v", f.ErrCode)
		request.go#L682: 	_, err = fmt.Fprintf(w, "%s %s HTTP/1.1\r\n", valueOrDefault(r.Method, "GET"), ruri)
		request.go#L688: 	_, err = fmt.Fprintf(w, "Host: %s\r\n", host)
		request.go#L705: 		_, err = fmt.Fprintf(w, "User-Agent: %s\r\n", userAgent)
		response.go#L259: 	if _, err := fmt.Fprintf(w, "HTTP/%d.%d %03d %s\r\n", r.ProtoMajor, r.ProtoMinor, r.StatusCode, text); err != nil {
		server.go#L383: 		_, err = fmt.Fprintf(cw.res.conn.bufw, "%x\r\n", len(p))
		server.go#L1617: 		fmt.Fprintf(bw, "%03d status code %d\r\n", code, code)
		server.go#L2033: 				fmt.Fprintf(c.rwc, "HTTP/1.1 "+publicErr+errorHeaders+publicErr)
		server.go#L2046: 				fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s%sUnsupported transfer encoding", code, StatusText(code), errorHeaders)
		server.go#L2054: 					fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s: %s%s%d %s: %s", v.code, StatusText(v.code), v.text, errorHeaders, v.code, StatusText(v.code), v.text)
		server.go#L2058: 				fmt.Fprintf(c.rwc, "HTTP/1.1 "+publicErr+errorHeaders+publicErr)

	net/http/internal
		chunked.go#L245: 	if _, err = fmt.Fprintf(cw.Wire, "%x\r\n", len(data)); err != nil {

	net/textproto
		writer.go#L31: 	fmt.Fprintf(w.W, format, args...)