Searched defs:HttpServer (Results 1 - 4 of 4) sorted by relevance

/external/chromium/net/tools/fetch/
H A Dhttp_server.cc8 HttpServer::HttpServer(std::string ip, int port) function in class:HttpServer
12 HttpServer::~HttpServer() {
H A Dhttp_server.h13 // Implements a simple, single-threaded HttpServer.
16 class HttpServer { class
18 HttpServer(std::string ip, int port);
19 ~HttpServer();
23 DISALLOW_COPY_AND_ASSIGN(HttpServer);
/external/chromium/net/server/
H A Dhttp_server.h20 class HttpServer : public ListenSocket::ListenSocketDelegate, class in namespace:net
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
[all...]
H A Dhttp_server.cc24 int HttpServer::Connection::lastId_ = 0;
26 HttpServer::HttpServer(const std::string& host, function in class:net::HttpServer
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
[all...]

Completed in 441 milliseconds