Home
last modified time | relevance | path

Searched refs:handler_class (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/test/
Dssl_servers.py23 def __init__(self, server_address, handler_class, context): argument
24 _HTTPServer.__init__(self, server_address, handler_class)
122 def __init__(self, context, host=HOST, handler_class=None): argument
125 handler_class or RootedHTTPRequestHandler,
151 host=HOST, handler_class=None): argument
156 server = HTTPSServerThread(context, host, handler_class)
193 handler_class = StatsRequestHandler variable
195 handler_class = RootedHTTPRequestHandler variable
196 handler_class.root = os.getcwd()
206 server = HTTPSServer(("", args.port), handler_class, context)
Dtest_urllib2.py1304 def opener_has_handler(self, opener, handler_class): argument
1306 if h.__class__ == handler_class:
Dtest_urllib2_localnet.py486 server = make_https_server(self, handler_class=handler, **kwargs)
/external/python/cpython2/Lib/wsgiref/
Dsimple_server.py148 host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandler argument
151 server = server_class((host, port), handler_class)
/external/python/cpython2/Doc/library/
Dbasehttpserver.rst36 handler_class=BaseHTTPServer.BaseHTTPRequestHandler):
38 httpd = server_class(server_address, handler_class)
285 handler_class=BaseHTTPServer.BaseHTTPRequestHandler):
292 httpd = server_class(server_address, handler_class)
Dwsgiref.rst274 .. function:: make_server(host, port, app, server_class=WSGIServer, handler_class=WSGIRequestHandle…
278 will process requests using the specified *handler_class*. *app* must be a WSGI
341 however, subclass this class and supply it as a *handler_class* to the
/external/autotest/client/cros/faft/
Drpc_functions.py49 def __init__(self, handler_class, *args, **kargs): argument
50 self._handler_class = handler_class