Home | History | Annotate | Download | only in http

Lines Matching refs:isResponse

46 	IsResponse       bool
93 t.IsResponse = true
214 if bw, ok := w.(*bufio.Writer); ok && !t.IsResponse {
309 isResponse := false
317 isResponse = true
340 t.TransferEncoding, err = fixTransferEncoding(isResponse, t.RequestMethod, t.Header)
345 realLength, err := fixLength(isResponse, t.StatusCode, t.RequestMethod, t.Header, t.TransferEncoding)
349 if isResponse && t.RequestMethod == "HEAD" {
428 func fixTransferEncoding(isResponse bool, requestMethod string, header Header) ([]string, error) {
483 func fixLength(isResponse bool, status int, requestMethod string, header Header, te []string) (int64, error) {
485 isRequest := !isResponse
530 if !isResponse {