Searched defs:HttpServer (Results 1 - 11 of 11) 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_org/net/tools/fetch/
H A Dhttp_server.cc7 HttpServer::HttpServer(std::string ip, int port) function in class:HttpServer
11 HttpServer::~HttpServer() {
H A Dhttp_server.h12 // Implements a simple, single-threaded HttpServer.
15 class HttpServer { class
17 HttpServer(std::string ip, int port);
18 ~HttpServer();
22 DISALLOW_COPY_AND_ASSIGN(HttpServer);
/external/chromium_org/net/server/
H A Dhttp_server.h24 class HttpServer : public StreamListenSocket::Delegate, class in namespace:net
25 public base::RefCountedThreadSafe<HttpServer> {
44 HttpServer(const StreamListenSocketFactory& socket_factory,
45 HttpServer::Delegate* delegate);
75 virtual ~HttpServer();
78 friend class base::RefCountedThreadSafe<HttpServer>;
91 HttpServer::Delegate* delegate_;
98 DISALLOW_COPY_AND_ASSIGN(HttpServer);
H A Dhttp_server.cc24 HttpServer::HttpServer(const StreamListenSocketFactory& factory, function in class:net::HttpServer
25 HttpServer::Delegate* delegate)
30 void HttpServer::AcceptWebSocket(
41 void HttpServer::SendOverWebSocket(int connection_id,
50 void HttpServer::SendResponse(int connection_id,
58 void HttpServer::Send(int connection_id,
67 void HttpServer::Send200(int connection_id,
73 void HttpServer::Send404(int connection_id) {
77 void HttpServer
[all...]
/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...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpserver.h37 class HttpServer;
41 // HttpServer
55 class HttpServer { class in namespace:talk_base
57 HttpServer();
58 virtual ~HttpServer();
62 sigslot::signal3<HttpServer*, int, StreamInterface*> SignalConnectionClosed;
70 // owened by the HttpServer at this point.
71 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
79 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
83 sigslot::signal3<HttpServer*, HttpServerTransactio
[all...]
H A Dhttpserver.cc42 // HttpServer
45 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { function in class:talk_base::HttpServer
48 HttpServer::~HttpServer() {
50 LOG(LS_WARNING) << "HttpServer::CloseAll has not completed";
62 HttpServer::HandleConnection(StreamInterface* stream) {
72 HttpServer::Respond(HttpServerTransaction* transaction) {
84 HttpServer::Close(int connection_id, bool force) {
91 HttpServer
[all...]
/external/chromium_org/chrome/test/chromedriver/server/
H A Dchromedriver_server.cc46 class HttpServer : public net::HttpServer::Delegate { class in namespace:__anon7050
48 explicit HttpServer(const HttpRequestHandlerFunc& handle_request_func) function in class:__anon7050::HttpServer
52 virtual ~HttpServer() {}
55 server_ = new net::HttpServer(
61 // Overridden from net::HttpServer::Delegate:
66 base::Bind(&HttpServer::OnResponse,
89 scoped_refptr<net::HttpServer> server_;
90 base::WeakPtrFactory<HttpServer> weak_factory_; // Should be last.
122 base::LazyInstance<base::ThreadLocalPointer<HttpServer> >
[all...]

Completed in 178 milliseconds