Home
last modified time | relevance | path

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

12

/external/python/setuptools/setuptools/tests/
Dserver.py10 class IndexServer(BaseHTTPServer.HTTPServer):
24 BaseHTTPServer.HTTPServer.__init__(self, server_address,
54 class MockServer(BaseHTTPServer.HTTPServer, threading.Thread):
61 BaseHTTPServer.HTTPServer.__init__(self, server_address,
/external/python/cpython2/Lib/wsgiref/
Dsimple_server.py13 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
40 class WSGIServer(HTTPServer):
48 HTTPServer.server_bind(self)
/external/python/cpython2/Doc/includes/
Dmp_webserver.py19 from BaseHTTPServer import HTTPServer
45 server = HTTPServer(address, RequestHandler)
/external/python/cpython3/Lib/wsgiref/
Dsimple_server.py13 from http.server import BaseHTTPRequestHandler, HTTPServer
42 class WSGIServer(HTTPServer):
50 HTTPServer.server_bind(self)
/external/opencensus-java/exporters/stats/prometheus/
DREADME.md55 // Uses a simple Prometheus HTTPServer to export metrics.
58 io.prometheus.client.exporter.HTTPServer server =
59 new HTTPServer(/*host*/ "localhost", /*port*/ 9091, /*daemon*/ true);
/external/autotest/client/cros/
Dhttpd.py14 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
164 class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
166 HTTPServer.__init__(self, server_address, HandlerClass)
246 class SecureHTTPServer(ThreadingMixIn, HTTPServer):
/external/opencensus-java/examples/src/main/java/io/opencensus/examples/grpc/helloworld/
DHelloWorldServer.java43 import io.prometheus.client.exporter.HTTPServer;
146 HTTPServer prometheusServer = new HTTPServer(prometheusPort, true); in main()
/external/bcc/examples/networking/tunnel_monitor/
Dmain.py6 from http.server import HTTPServer, SimpleHTTPRequestHandler
72 self.srv = HTTPServer(("", 8080), SimpleHTTPRequestHandler)
/external/autotest/scheduler/shard/
Dsimple_heartbeat_server.py39 from BaseHTTPServer import HTTPServer
178 server = HTTPServer(('localhost', args.port), BoardHandler)
/external/grpc-grpc/tools/run_tests/python_utils/
Dport_server.py18 from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
202 class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
/external/python/cpython2/Lib/test/
Dtest_robotparser.py5 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
177 self.server = HTTPServer((support.HOST, 0), RobotHandler)
/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,
/external/python/cpython2/Lib/
DBaseHTTPServer.py102 class HTTPServer(SocketServer.TCPServer): class
591 ServerClass = HTTPServer, protocol="HTTP/1.0"):
DSimpleHTTPServer.py230 ServerClass = BaseHTTPServer.HTTPServer):
/external/python/cpython3/Lib/test/
Dtest_robotparser.py7 from http.server import BaseHTTPRequestHandler, HTTPServer
288 self.server = HTTPServer((support.HOST, 0), RobotHandler)
/external/grpc-grpc/test/core/http/
Dtest_server.py53 httpd = BaseHTTPServer.HTTPServer(('localhost', args.port), Handler)
/external/python/cpython3/Doc/library/
Dhttp.server.rst24 One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass.
28 def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler):
34 .. class:: HTTPServer(server_address, RequestHandlerClass)
43 This class is identical to HTTPServer but uses threads to handle
46 :class:`HTTPServer` would wait indefinitely.
51 The :class:`HTTPServer` and :class:`ThreadingHTTPServer` must be given
/external/python/oauth2client/oauth2client/
Dtools.py102 class ClientRedirectServer(BaseHTTPServer.HTTPServer):
/external/bcc/examples/networking/distributed_bridge/
Dtunnel.py9 from http.server import HTTPServer, SimpleHTTPRequestHandler
Dtunnel_mesh.py9 from http.server import HTTPServer, SimpleHTTPRequestHandler
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py21 from http.server import HTTPServer
202 class UnixHTTPServer(socketserver.UnixStreamServer, HTTPServer):
/external/autotest/client/cros/update_engine/
Dnano_omaha_devserver.py189 self._httpd = BaseHTTPServer.HTTPServer(('127.0.0.1', 0), self.Handler)

12