net/http.Response.Status (field)

9 uses

	net/http (current package)
		filetransport.go#L111: 	pr.res.Status = fmt.Sprintf("%d %s", code, StatusText(code))
		h2_bundle.go#L8482: 		Status:     status + " " + StatusText(statusCode),
		response.go#L36: 	Status     string // e.g. "200 OK"
		response.go#L172: 		resp.Status = strings.TrimLeft(line[i+1:], " ")
		response.go#L174: 	statusCode := resp.Status
		response.go#L175: 	if i := strings.IndexByte(resp.Status, ' '); i != -1 {
		response.go#L176: 		statusCode = resp.Status[:i]
		response.go#L247: 	text := r.Status
		transport.go#L1714: 			f := strings.SplitN(resp.Status, " ", 2)