Searched defs:HTTPServer (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpreview.py33 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer namespace
117 server = HTTPServer(('', int(opts.port)), _RequestHandler)
/external/chromium_org/tools/json_schema_compiler/
H A Dpreview.py23 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer namespace
302 class PreviewHTTPServer(HTTPServer, object):
/external/chromium_org/native_client_sdk/src/tools/
H A Dhttpd.py44 class HTTPServer(BaseHTTPServer.HTTPServer): class in inherits:BaseHTTPServer.HTTPServer
46 BaseHTTPServer.HTTPServer.__init__(self, *args)
165 httpd = HTTPServer(('', port), HTTPRequestHandler, **server_kwargs)
167 sys.stderr.write('Error creating HTTPServer: %s\n' % e)
/external/chromium_org/tools/dromaeo_benchmark_runner/
H A Ddromaeo_benchmark_runner.py45 from BaseHTTPServer import HTTPServer namespace
229 server = HTTPServer(('', options.port), DromaeoHandler)
/external/chromium_org/third_party/tlslite/tests/
H A Dtlstest.py20 from BaseHTTPServer import HTTPServer namespace
23 from http.server import HTTPServer, SimpleHTTPRequestHandler namespace
636 HTTPServer):
/external/chromium_org/components/cloud_devices/tools/prototype/
H A Dprototype.py34 from tornado.httpserver import HTTPServer namespace
1104 server = HTTPServer(handler.handle_request)
/external/chromium_org/net/tools/testserver/
H A Dtestserver.py124 class HTTPServer(testserver_base.ClientRestrictingServerMixIn,
134 BaseHTTPServer.HTTPServer):
135 """This is a specialization of HTTPServer that serves an
2015 server = HTTPServer((host, port), TestPageHandler)
2067 server = HTTPServer((host, port), BasicAuthProxyRequestHandler)
126 testserver_base.StoppableHTTPServer): class in inherits:testserver_base.ClientRestrictingServerMixIn, testserver_base.BrokenPipeHandlerMixIn, testserver_base.StoppableHTTPServer

Completed in 199 milliseconds