Home
last modified time | relevance | path

Searched refs:httpServer (Results 1 – 6 of 6) sorted by relevance

/third_party/node/test/parallel/
Dtest-http-host-headers.js26 const httpServer = http.createServer(reqHandler); constant
49 httpServer.close();
54 httpServer.listen(0, (er) => {
60 port: httpServer.address().port,
68 port: httpServer.address().port,
76 port: httpServer.address().port,
84 port: httpServer.address().port,
92 port: httpServer.address().port,
Dtest-http-outgoing-end-types.js6 const httpServer = http.createServer(common.mustCall(function(req, res) { constant
7 httpServer.close();
16 httpServer.listen(0, common.mustCall(function() {
Dtest-http-outgoing-write-types.js6 const httpServer = http.createServer(common.mustCall(function(req, res) { constant
7 httpServer.close();
22 httpServer.listen(0, common.mustCall(function() {
Dtest-http-byteswritten.js29 const httpServer = http.createServer(common.mustCall(function(req, res) { constant
30 httpServer.close();
53 httpServer.listen(0, function() {
/third_party/node/deps/npm/node_modules/socks-proxy-agent/test/
Dtest.js16 var httpServer, httpPort;
38 httpServer = http.createServer();
39 httpServer.listen(function () {
40 httpPort = httpServer.address().port;
64 httpServer.once('close', function () { done(); });
65 httpServer.close();
94 httpServer.once('request', function (req, res) {
/third_party/flutter/flutter/examples/image_list/lib/
Dmain.dart18 final HttpServer httpServer =
20 final int port = httpServer.port;
26 httpServer.listen((HttpRequest request) async {