Searched refs:HttpServer (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/webrtc/base/ |
D | httpserver.cc | 28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer 31 HttpServer::~HttpServer() { in ~HttpServer() 45 HttpServer::HandleConnection(StreamInterface* stream) { in HandleConnection() 55 HttpServer::Respond(HttpServerTransaction* transaction) { in Respond() 67 HttpServer::Close(int connection_id, bool force) { in Close() 74 HttpServer::CloseAll(bool force) { in CloseAll() 91 HttpServer::Connection* 92 HttpServer::Find(int connection_id) { in Find() 100 HttpServer::Remove(int connection_id) { in Remove() 120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection() [all …]
|
D | httpserver_unittest.cc | 29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor() 39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest() 45 void OnRequestComplete(HttpServer*, HttpServerTransaction* t, int) { in OnRequestComplete() 49 void OnClosed(HttpServer*) { in OnClosed() 52 void OnConnectionClosed(HttpServer*, int, StreamInterface* stream) { in OnConnectionClosed() 58 void CreateClientConnection(HttpServer& server, in CreateClientConnection() 75 TEST(HttpServer, DoesNotSignalCloseUnlessCloseAllIsCalled) { in TEST() argument 76 HttpServer server; in TEST() 89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument 90 HttpServer server; in TEST() [all …]
|
D | httpserver.h | 20 class HttpServer; variable 38 class HttpServer { 40 HttpServer(); 41 virtual ~HttpServer(); 45 sigslot::signal3<HttpServer*, int, StreamInterface*> SignalConnectionClosed; 54 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*> 62 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest; 66 sigslot::signal3<HttpServer*, HttpServerTransaction*, int> 77 sigslot::signal1<HttpServer*> SignalCloseAllComplete; 82 Connection(int connection_id, HttpServer* server); [all …]
|
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/ |
D | ZPageHandlers.java | 21 import com.sun.net.httpserver.HttpServer; 85 private static HttpServer server; 145 public static void registerAllToHttpServer(HttpServer server) { in registerAllToHttpServer() 167 server = HttpServer.create(new InetSocketAddress(port), BACKLOG); in startHttpServerAndRegisterAll()
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 2514 :class:`SimpleHTTPServer.HttpServer` instance while sharing a single listening
|