Lines Matching defs:Server
164 500: 'Internal Server Error', // RFC 7231 6.6.1
513 function Server(options, requestListener) {
514 if (!(this instanceof Server)) return new Server(options, requestListener);
526 net.Server.call(
551 ObjectSetPrototypeOf(Server.prototype, net.Server.prototype);
552 ObjectSetPrototypeOf(Server, net.Server);
554 Server.prototype.close = function() {
556 ReflectApply(net.Server.prototype.close, this, arguments);
559 Server.prototype.closeAllConnections = function() {
571 Server.prototype.closeIdleConnections = function() {
587 Server.prototype.setTimeout = function setTimeout(msecs, callback) {
594 Server.prototype[EE.captureRejectionSymbol] = function(err, event, ...args) {
612 net.Server.prototype[SymbolFor('nodejs.rejection')]
1200 Server,