HomeSort by relevance Sort by last modified time
    Searched defs:HttpServer (Results 1 - 11 of 11) 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);
  /external/chromium_org/net/tools/fetch/
http_server.cc 7 HttpServer::HttpServer(std::string ip, int port)
11 HttpServer::~HttpServer() {
http_server.h 12 // Implements a simple, single-threaded HttpServer.
15 class HttpServer {
17 HttpServer(std::string ip, int port);
18 ~HttpServer();
22 DISALLOW_COPY_AND_ASSIGN(HttpServer);
  /external/chromium_org/net/server/
http_server.h 24 class HttpServer : public StreamListenSocket::Delegate,
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);
http_server.cc 24 HttpServer::HttpServer(const StreamListenSocketFactory& factory,
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::Send500(int connection_id, const std::string& message)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/server/
chromedriver_server.cc 46 class HttpServer : public net::HttpServer::Delegate {
48 explicit HttpServer(const HttpRequestHandlerFunc& handle_request_func)
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...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver.cc 34 #include "talk/base/httpserver.h"
42 // HttpServer
45 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) {
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)
    [all...]
httpserver.h 37 class HttpServer;
41 // HttpServer
55 class HttpServer {
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*, HttpServerTransaction*, int
    [all...]
  /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...]

Completed in 922 milliseconds