Lines Matching refs:resp
130 resp = self.call_func(req, *args, **self.kwargs)
132 resp = exc
133 if resp is None:
135 resp = req.response
136 if isinstance(resp, text_type):
137 resp = bytes_(resp, req.charset)
138 if isinstance(resp, bytes):
139 body = resp
140 resp = req.response
141 resp.write(body)
142 if resp is not req.response:
143 resp = req.response.merge_cookies(resp)
144 return resp(environ, start_response)