func net/http.StatusText

15 uses

	net/http (current package)
		filetransport.go#L130: 	pr.res.Status = fmt.Sprintf("%d %s", code, StatusText(code))
		h2_bundle.go#L9684: 		Status:     status + " " + StatusText(statusCode),
		response.go#L249: 		text = StatusText(r.StatusCode)
		server.go#L1602: 	if text := StatusText(code); text != "" {
		server.go#L1903: func (e statusError) Error() string { return StatusText(e.code) + ": " + e.text }
		server.go#L2063: 				fmt.Fprintf(c.rwc, "HTTP/1.1 %d %s%sUnsupported transfer encoding", code, StatusText(code), errorHeaders)
		server.go#L2071: 					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#L2453: 		body := "<a href=\"" + htmlEscape(url) + "\">" + StatusText(code) + "</a>.\n"
		server.go#L2743: 				Error(w, StatusText(StatusMethodNotAllowed), StatusMethodNotAllowed)
		status.go#L81: func StatusText(code int) string {

	net/http/httptest
		recorder.go#L199: 	res.Status = fmt.Sprintf("%03d %s", res.StatusCode, http.StatusText(res.StatusCode))

	go.pact.im/x/httprange
		errors.go#L35: 		text = http.StatusText(e.StatusCode)

	golang.org/x/net/http2
		transport.go#L2350: 		Status:     status + " " + http.StatusText(statusCode),

	google.golang.org/grpc/internal/transport
		http2_client.go#L1521: 				http.StatusText(statusCode),