Lines Matching defs:ServerResponse
103 const kServerResponse = Symbol('ServerResponse');
194 function ServerResponse(req, options) {
228 ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype);
229 ObjectSetPrototypeOf(ServerResponse, OutgoingMessage);
231 ServerResponse.prototype._finish = function _finish() {
255 ServerResponse.prototype.statusCode = 200;
256 ServerResponse.prototype.statusMessage = undefined;
275 // where the ServerResponse object has already been deconstructed.
282 ServerResponse.prototype.assignSocket = function assignSocket(socket) {
293 ServerResponse.prototype.detachSocket = function detachSocket(socket) {
300 ServerResponse.prototype.writeContinue = function writeContinue(cb) {
305 ServerResponse.prototype.writeProcessing = function writeProcessing(cb) {
309 ServerResponse.prototype.writeEarlyHints = function writeEarlyHints(hints, cb) {
337 ServerResponse.prototype._implicitHeader = function _implicitHeader() {
341 ServerResponse.prototype.writeHead = writeHead;
426 ServerResponse.prototype.writeHeader = ServerResponse.prototype.writeHead;
430 this[kServerResponse] = options.ServerResponse || ServerResponse;
879 // Reply an error segment if there is no in-flight `ServerResponse`,
1201 ServerResponse,