HomeSort by relevance Sort by last modified time
    Searched full:httpserver (Results 1 - 21 of 21) sorted by null

  /external/chromium/net/tools/fetch/
http_server.cc 8 HttpServer::HttpServer(std::string ip, int port)
12 HttpServer::~HttpServer() {
http_server.h 13 // Implements a simple, single-threaded HttpServer.
16 class HttpServer {
18 HttpServer(std::string ip, int port);
19 ~HttpServer();
23 DISALLOW_COPY_AND_ASSIGN(HttpServer);
fetch_server.cc 39 HttpServer server("", 80); // TODO(mbelshe): make port configurable
  /external/chromium/net/server/
http_server.h 20 class HttpServer : public ListenSocket::ListenSocketDelegate,
21 public base::RefCountedThreadSafe<HttpServer> {
39 HttpServer(const std::string& host, int port, HttpServer::Delegate* del);
40 virtual ~HttpServer();
55 friend class base::RefCountedThreadSafe<HttpServer>;
59 friend class HttpServer;
61 explicit Connection(HttpServer* server, ListenSocket* sock);
68 HttpServer* server_;
94 HttpServer::Delegate* delegate_
    [all...]
http_server.cc 24 int HttpServer::Connection::lastId_ = 0;
26 HttpServer::HttpServer(const std::string& host,
28 HttpServer::Delegate* del)
33 HttpServer::~HttpServer() {
70 void HttpServer::AcceptWebSocket(
107 void HttpServer::SendOverWebSocket(int connection_id,
121 void HttpServer::Send(int connection_id, const std::string& data) {
129 void HttpServer::Send(int connection_id, const char* bytes, int len)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 489 MockServer httpServer = new MockServer(
491 httpServer.start();
493 if (!httpServer.started) {
498 + httpServer.port()).openConnection();
504 httpServer.join();
679 MockHTTPServer httpServer = new MockHTTPServer(
681 httpServer.start();
683 if (!httpServer.started) {
689 + httpServer.port()).openConnection();
710 + httpServer.port()).openConnection()
    [all...]
  /external/chromium-trace/trace-viewer/
run_dev_server.py 28 class Server(BaseHTTPServer.HTTPServer):
30 BaseHTTPServer.HTTPServer.__init__(self, *args, **kwargs)
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.h 24 : public net::HttpServer::Delegate,
59 // net::HttpServer::Delegate implementation.
101 scoped_refptr<net::HttpServer> server_;
devtools_http_protocol_handler.cc 40 net::HttpServer* server,
53 &net::HttpServer::Close,
78 &net::HttpServer::SendOverWebSocket,
84 net::HttpServer* server_;
467 server_ = new net::HttpServer(ip_, port_, this);
510 &net::HttpServer::Send200,
520 &net::HttpServer::Send404,
529 &net::HttpServer::Send500,
540 &net::HttpServer::AcceptWebSocket,
  /external/chromium/net/tools/testserver/
backoff_server.py 45 httpd = BaseHTTPServer.HTTPServer(('', port), RequestHandler)
testserver.py 61 class StoppableHTTPServer(BaseHTTPServer.HTTPServer):
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 59 private final MockWebServer httpServer = new MockWebServer();
72 httpServer.play();
73 httpAddress = new Address(httpServer.getHostName(), httpServer.getPort(), null, null, null);
74 httpSocketAddress = new InetSocketAddress(InetAddress.getByName(httpServer.getHostName()),
75 httpServer.getPort());
101 httpServer.shutdown();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 165 MockServer httpServer =
167 httpServer.start();
169 if (!httpServer.started) {
174 new URL("http://localhost:" + httpServer.port()).openConnection();
180 httpServer.join();
  /external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
webserver.rb 46 s = HTTPServer.new( :Port => port )
  /external/clang/tools/scan-view/
ScanView.py 115 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/webkit/Tools/iExploder/iexploder-1.7.2/src/
webserver.rb 130 s = WEBrick::HTTPServer.new(:Port => port, :Logger => warn_logger, :AccessLog => access_log)
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
rebaselineserver.py 60 class RebaselineHTTPServer(BaseHTTPServer.HTTPServer):
62 BaseHTTPServer.HTTPServer.__init__(self, ("", httpd_port), RebaselineHTTPRequestHandler)
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 272 class WebSocketServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
273 """HTTPServer specialized for WebSocket."""
277 # Overrides BaseHTTPServer.HTTPServer.allow_reuse_address
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 268 class WebSocketServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
269 """HTTPServer specialized for WebSocket."""
273 # Overrides BaseHTTPServer.HTTPServer.allow_reuse_address
    [all...]
  /prebuilts/tools/common/http-client/src/
httpcomponents-core-4.1-src.zip 
  /libcore/expectations/
brokentests.txt 436 "com.sun.net.httpserver",
    [all...]

Completed in 428 milliseconds