func io.WriteString
25 uses
io (current package)
io.go#L314: func WriteString(w Writer, s string) (n int, err error) {
compress/gzip
gzip.go#L126: _, err = io.WriteString(z.w, s)
crypto/tls
auth.go#L85: io.WriteString(b, context)
auth.go#L91: io.WriteString(h, context)
github.com/klauspost/compress/gzip
gzip.go#L158: _, err = io.WriteString(z.w, s)
go.uber.org/multierr
error.go#L265: io.WriteString(w, item.Error())
error.go#L293: io.WriteString(w, s[:idx+1])
mime
encodedword.go#L87: io.WriteString(w, s)
encodedword.go#L101: io.WriteString(w, s[last:i])
encodedword.go#L108: io.WriteString(w, s[last:])
net/http
h2_bundle.go#L6204: io.WriteString(w, "<h1>HTTP Error 431</h1><p>Request Header Field(s) Too Large</p>")
request.go#L703: _, err = io.WriteString(w, "\r\n")
response.go#L316: if _, err := io.WriteString(w, "Content-Length: 0\r\n"); err != nil {
response.go#L322: if _, err := io.WriteString(w, "\r\n"); err != nil {
server.go#L1896: io.WriteString(re.Conn, "HTTP/1.0 400 Bad Request\r\n\r\nClient sent an HTTP request to an HTTPS server.\n")
server.go#L3421: io.WriteString(w, h.errorBody())
transfer.go#L278: if _, err := io.WriteString(w, "Connection: close\r\n"); err != nil {
transfer.go#L290: if _, err := io.WriteString(w, "Content-Length: "); err != nil {
transfer.go#L293: if _, err := io.WriteString(w, strconv.FormatInt(t.ContentLength, 10)+"\r\n"); err != nil {
transfer.go#L300: if _, err := io.WriteString(w, "Transfer-Encoding: chunked\r\n"); err != nil {
transfer.go#L323: if _, err := io.WriteString(w, "Trailer: "+strings.Join(keys, ",")+"\r\n"); err != nil {
transfer.go#L402: _, err = io.WriteString(w, "\r\n")
net/http/internal
chunked.go#L242: if _, err = io.WriteString(cw.Wire, "\r\n"); err != nil {
chunked.go#L252: _, err := io.WriteString(cw.Wire, "0\r\n")
strings
reader.go#L143: m, err := io.WriteString(w, s)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |