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

/external/chromium_org/net/server/
H A Dhttp_server.h27 class HttpServer { class in namespace:net
30 // destroy the HttpServer in any of these callbacks.
43 HttpServer(scoped_ptr<ServerSocket> server_socket,
44 HttpServer::Delegate* delegate);
45 ~HttpServer();
106 HttpServer::Delegate* const delegate_;
111 base::WeakPtrFactory<HttpServer> weak_ptr_factory_;
113 DISALLOW_COPY_AND_ASSIGN(HttpServer);
H A Dhttp_server.cc26 HttpServer::HttpServer(scoped_ptr<ServerSocket> server_socket, function in class:net::HttpServer
27 HttpServer::Delegate* delegate)
36 HttpServer::~HttpServer() {
41 void HttpServer::AcceptWebSocket(
51 void HttpServer::SendOverWebSocket(int connection_id,
60 void HttpServer::SendRaw(int connection_id, const std::string& data) {
70 void HttpServer::SendResponse(int connection_id,
75 void HttpServer
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
H A DJsonpRequestBuilderTest.java41 String url = HttpServer.execute(1000, "{\"id\": \"data\"}");
62 String url = HttpServer.execute(2000, "Fubar");
83 String urlBase = HttpServer.execute(1000, "{\"id\": \"data\"}");
104 private static class HttpServer extends Thread { class in class:JsonpRequestBuilderTest
116 HttpServer server = new HttpServer(timeoutMillis, response);
145 private HttpServer(long waitMillis, String response) throws IOException { method in class:JsonpRequestBuilderTest.HttpServer
/external/chromium_org/third_party/webrtc/base/
H A Dhttpserver.h20 class HttpServer;
24 // HttpServer
38 class HttpServer { class in namespace:rtc
40 HttpServer();
41 virtual ~HttpServer();
45 sigslot::signal3<HttpServer*, int, StreamInterface*> SignalConnectionClosed;
53 // owened by the HttpServer at this point.
54 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
62 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
66 sigslot::signal3<HttpServer*, HttpServerTransactio
[all...]
H A Dhttpserver.cc25 // HttpServer
28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { function in class:rtc::HttpServer
31 HttpServer::~HttpServer() {
33 LOG(LS_WARNING) << "HttpServer::CloseAll has not completed";
45 HttpServer::HandleConnection(StreamInterface* stream) {
55 HttpServer::Respond(HttpServerTransaction* transaction) {
67 HttpServer::Close(int connection_id, bool force) {
74 HttpServer
[all...]
/external/chromium_org/chrome/test/chromedriver/server/
H A Dchromedriver_server.cc47 class HttpServer : public net::HttpServer::Delegate { class in namespace:__anon5970
49 explicit HttpServer(const HttpRequestHandlerFunc& handle_request_func) function in class:__anon5970::HttpServer
53 virtual ~HttpServer() {}
62 server_.reset(new net::HttpServer(server_socket.Pass(), this));
67 // Overridden from net::HttpServer::Delegate:
76 base::Bind(&HttpServer::OnResponse,
100 scoped_ptr<net::HttpServer> server_;
101 base::WeakPtrFactory<HttpServer> weak_factory_; // Should be last.
148 base::LazyInstance<base::ThreadLocalPointer<HttpServer> >
[all...]

Completed in 773 milliseconds