Home
last modified time | relevance | path

Searched refs:HTTPServer (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Doc/includes/
Dmp_webserver.py19 from BaseHTTPServer import HTTPServer
45 server = HTTPServer(address, RequestHandler)
/external/python/cpython2/Lib/wsgiref/
Dsimple_server.py13 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
40 class WSGIServer(HTTPServer):
48 HTTPServer.server_bind(self)
/external/autotest/client/cros/
Dhttpd.py14 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
161 class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
163 HTTPServer.__init__(self, server_address, HandlerClass)
215 class SecureHTTPServer(ThreadingMixIn, HTTPServer):
/external/autotest/scheduler/shard/
Dsimple_heartbeat_server.py39 from BaseHTTPServer import HTTPServer
178 server = HTTPServer(('localhost', args.port), BoardHandler)
/external/autotest/client/cros/cellular/
Dtest_endpoint.py46 server = BaseHTTPServer.HTTPServer(('', 80), TestEndpointHandler)
Dforward_8960_screen111 httpd = BaseHTTPServer.HTTPServer(('', http_server_port), PageHandler)
/external/clang/tools/scan-view/share/
DScanView.py115 class ScanViewServer(BaseHTTPServer.HTTPServer):
117 BaseHTTPServer.HTTPServer.__init__(self, address, handler)
173 BaseHTTPServer.HTTPServer.finish_request(self, request, client_address)
182 BaseHTTPServer.HTTPServer.handle_error(self, request, client_address)
/external/python/cpython2/Doc/library/
Dbasehttpserver.rst30 The first class, :class:`HTTPServer`, is a :class:`SocketServer.TCPServer`
35 def run(server_class=BaseHTTPServer.HTTPServer,
42 .. class:: HTTPServer(server_address, RequestHandlerClass)
284 def run_while_true(server_class=BaseHTTPServer.HTTPServer,
Dwsgiref.rst314 :class:`WSGIServer` is a subclass of :class:`BaseHTTPServer.HTTPServer`, so all
/external/python/cpython2/Lib/
DBaseHTTPServer.py102 class HTTPServer(SocketServer.TCPServer): class
591 ServerClass = HTTPServer, protocol="HTTP/1.0"):
DSimpleHTTPServer.py230 ServerClass = BaseHTTPServer.HTTPServer):
DCGIHTTPServer.py373 ServerClass = BaseHTTPServer.HTTPServer):
Dpydoc.py2105 class DocServer(BaseHTTPServer.HTTPServer):
2124 DocServer.base = BaseHTTPServer.HTTPServer
/external/autotest/client/site_tests/autoupdate_CannedOmahaUpdate/
Dautoupdate_CannedOmahaUpdate.py82 self._httpd = BaseHTTPServer.HTTPServer(('127.0.0.1', 0), self.Handler)
/external/python/cpython2/Lib/test/
Dssl_servers.py8 from BaseHTTPServer import HTTPServer as _HTTPServer, BaseHTTPRequestHandler
Dtest_urllib2_localnet.py27 class LoopbackHttpServer(BaseHTTPServer.HTTPServer):
33 BaseHTTPServer.HTTPServer.__init__(self,
Dtest_httpservers.py20 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
58 self.server = HTTPServer(('', 0), self.request_handler)
/external/v8/tools/
Dgrokdump.py2826 class InspectionWebServer(BaseHTTPServer.HTTPServer):
2828 BaseHTTPServer.HTTPServer.__init__(
/external/python/cpython2/Misc/
DHISTORY11000 BaseHTTPServer.HTTPServer, in case the request handler should want to