/third_party/mindspore/mindspore/ccsrc/ps/core/communicator/ |
D | http_server.cc | 44 HttpServer::~HttpServer() { in ~HttpServer() 50 bool HttpServer::InitServer() { in InitServer() 124 void HttpServer::SetTimeOut(int seconds) { in SetTimeOut() 131 bool HttpServer::RegisterRoute(const std::string &url, OnRequestReceive *function) { in RegisterRoute() 139 bool HttpServer::Start(bool is_detach) { in Start() 159 bool HttpServer::Wait() { in Wait() 167 bool HttpServer::Stop() { in Stop()
|
D | http_server.h | 48 class HttpServer { 51 explicit HttpServer(const std::string &address, std::uint16_t port, size_t thread_num = 10) 60 ~HttpServer();
|
D | http_communicator.h | 37 http_server_ = std::make_shared<HttpServer>(ip_, port_, kThreadNum); in HttpCommunicator() 48 std::shared_ptr<HttpServer> http_server_;
|
/third_party/cef/libcef/browser/ |
D | server_impl.h | 21 class CefServerImpl : public CefServer, net::HttpServer::Delegate { 106 std::unique_ptr<net::HttpServer> server_;
|
D | server_impl.cc | 547 server_.reset(new net::HttpServer(std::move(socket), this)); in StartOnHandlerThread()
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | flutter_platform_test.dart | 147 class MockHttpServer extends Mock implements HttpServer {} 151 // Uses a mock HttpServer. We don't want to bind random ports in our CI hosts. 166 Future<HttpServer> bind(InternetAddress host, int port) async => MockHttpServer();
|
D | devfs_test.dart | 213 HttpServer _server; 224 _server = await HttpServer.bind(InternetAddress.loopbackIPv6, 0); 228 _server = await HttpServer.bind(InternetAddress.loopbackIPv4, 0);
|
/third_party/nghttp2/src/ |
D | HttpServer.h | 231 class HttpServer { 233 HttpServer(const Config *config);
|
D | HttpServer.cc | 228 Sessions(HttpServer *sv, struct ev_loop *loop, const Config *config, in Sessions() 409 const HttpServer *get_server() const { return sv_; } in get_server() 417 HttpServer *sv_; 1821 AcceptHandler(HttpServer *sv, Sessions *sessions, const Config *config) in AcceptHandler() 1972 HttpServer::HttpServer(const Config *config) : config_(config) { in HttpServer() function in nghttp2::HttpServer 2003 int start_listen(HttpServer *sv, struct ev_loop *loop, Sessions *sessions, in start_listen() 2084 auto config = static_cast<HttpServer *>(arg)->get_config(); in alpn_select_proto_cb() 2103 int HttpServer::run() { in run() 2231 const Config *HttpServer::get_config() const { return config_; } in get_config() 2233 const StatusPage *HttpServer::get_status_page(int status) const { in get_status_page()
|
D | Makefile.am | 88 HttpServer.cc HttpServer.h
|
D | nghttpd.cc | 473 HttpServer server(&config); in main()
|
D | CMakeLists.txt | 58 HttpServer.cc
|
/third_party/flutter/flutter/examples/image_list/lib/ |
D | main.dart | 18 final HttpServer httpServer = 19 await HttpServer.bind(InternetAddress.anyIPv6, 0);
|
/third_party/node/lib/ |
D | https.js | 43 Server: HttpServer, 92 Server.prototype.setTimeout = HttpServer.prototype.setTimeout;
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_runner/ |
D | web_fs.dart | 51 typedef HttpMultiServerFactory = Future<HttpServer> Function(dynamic address, int port); 85 final HttpServer _server; 210 final HttpServer server = await httpMultiServerFactory(_kHostName, port);
|
/third_party/mindspore/mindspore/ccsrc/ps/core/ |
D | scheduler_node.h | 156 std::shared_ptr<HttpServer> http_server_;
|
D | scheduler_node.cc | 1019 http_server_ = std::make_shared<HttpServer>(address, port, thread_num); in StartRestfulServer()
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/ |
D | flutter_platform.dart | 388 /// Binds an [HttpServer] serving from `host` on `port`. 393 Future<HttpServer> bind(InternetAddress host, int port) => HttpServer.bind(host, port); 414 final HttpServer server = await bind(host, port); 718 HttpServer server,
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | io.dart | 54 HttpServer,
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 3180 @@ -107,8 +107,8 @@ void HttpServer::SendRaw(int connection_id, 3184 - base::BindRepeating(&HttpServer::OnWritable, base::Unretained(this), 3186 + base::BindRepeating(&HttpServer::OnWritable, 3191 @@ -182,9 +182,9 @@ bool HttpServer::SetSendBufferSize(int connection_id, int32_t size) { 3194 void HttpServer::DoAcceptLoop() { 3197 - base::BindOnce(&HttpServer::OnAcceptCompleted, base::Unretained(this))); 3199 + base::BindOnce(&HttpServer::OnAcceptCompleted, 3203 void HttpServer::OnAcceptCompleted( 3204 @@ -212,8 +212,8 @@ void HttpServer::OnAcceptCompleted( 3208 - base::BindRepeating(&HttpServer::OnReadable, base::Unretained(this), [all …]
|