Home
last modified time | relevance | path

Searched refs:start_response (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/wsgiref/
Dhandlers.py85 self.result = application(self.environ, self.start_response)
160 def start_response(self, status, headers,exc_info=None): member in BaseHandler
305 self.result = self.error_output(self.environ, self.start_response)
309 def error_output(self, environ, start_response): argument
322 start_response(self.error_status,self.error_headers[:],sys.exc_info())
Dsimple_server.py135 def demo_app(environ,start_response): argument
143 start_response("200 OK", [('Content-Type','text/plain')])
Dvalidate.py146 environ, start_response = args
171 return WriteWrapper(start_response(*args))
/external/autotest/frontend/
Dfrontend.wsgi20 def application(environ, start_response): argument
23 return _application(environ, start_response)
/external/python/cpython2/Lib/test/
Dtest_wsgiref.py42 def hello_app(environ,start_response): argument
43 start_response("200 OK", [
127 def bad_app(environ,start_response): argument
128 start_response("200 OK", ('Content-Type','text/plain'))
/external/autotest/site_utils/stats/
Dapache_error_log_example.txt6 …on Apr 17 16:30:26.142259 2017] [:warn] [pid 4177] return _application(environ, start_response)
/external/python/cpython2/Doc/library/
Dwsgiref.rst124 def simple_app(environ, start_response):
130 start_response(status, headers)
295 .. function:: demo_app(environ, start_response)
420 def simple_app(environ, start_response):
423 start_response(status, headers)
626 .. method:: BaseHandler.error_output(environ, start_response)
632 and should pass that information to *start_response* when calling it (as
716 def hello_world_app(environ, start_response):
719 start_response(status, headers)
/external/python/cpython2/Doc/howto/
Dwebservers.rst292 def app(environ, start_response):
293 start_response('200 OK', [('Content-Type', 'text/html')])