Lines Matching refs:Response
34 func (t fileTransport) RoundTrip(req *Request) (resp *Response, err error) {
38 // sends our *Response on, once the *Response itself has been
49 func newPopulateResponseWriter() (*populateResponse, <-chan *Response) {
52 ch: make(chan *Response),
54 res: &Response{
65 // populateResponse is a ResponseWriter that populates the *Response
66 // in res, and writes its body to a pipe connected to the response
67 // body. Once writes begin or finish() is called, the response is sent
70 res *Response
71 ch chan *Response