/third_party/node/lib/ |
D | _http_server.js | 194 function ServerResponse(req, options) { class 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; 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) { [all …]
|
D | http.js | 44 ServerResponse, 125 ServerResponse, property
|
/third_party/node/test/parallel/ |
D | test-http-outgoing-proto.js | 8 const ServerResponse = http.ServerResponse; constant 13 typeof ServerResponse.prototype._implicitHeader, 'function');
|
D | test-http-server-response-standalone.js | 4 const { ServerResponse } = require('http'); 12 const res = new ServerResponse({
|
D | test-http-server-options-server-response.js | 13 class MyServerResponse extends http.ServerResponse { 20 ServerResponse: MyServerResponse property
|
D | test-https-server-options-server-response.js | 19 class MyServerResponse extends http.ServerResponse { 29 ServerResponse: MyServerResponse property
|
D | test-http-outgoing-message-write-callback.js | 22 const res = new http.ServerResponse({
|
D | test-child-process-http-socket-leak.js | 12 const res = new http.ServerResponse(req);
|
D | test-http2-https-fallback-http-server-options.js | 37 class MyServerResponse extends http.ServerResponse {
|
/third_party/node/lib/internal/http2/ |
D | compat.js | 883 function onServerStream(ServerRequest, ServerResponse, argument 887 const response = new ServerResponse(stream);
|
D | core.js | 3121 http.ServerResponse;
|
/third_party/node/doc/api/ |
D | http.md | 1255 * `response` {http.ServerResponse} 1276 * `response` {http.ServerResponse} 1322 of the current attached [`http.ServerResponse`][] has been sent, it is 1442 * `response` {http.ServerResponse} 1655 ## Class: `http.ServerResponse` 1748 description: This method now returns a reference to `ServerResponse`. 1933 * Returns: {http.ServerResponse} 1987 * Returns: {http.ServerResponse} 2231 * Returns: {http.ServerResponse} 2243 Returns a reference to the `ServerResponse`, so that calls can be chained. [all …]
|
D | diagnostics_channel.md | 432 * `response` {http.ServerResponse} 441 * `response` {http.ServerResponse}
|
D | deprecations.md | 1333 ### DEP0063: `ServerResponse.prototype.writeHeader()` 1344 The `node:http` module `ServerResponse.prototype.writeHeader()` API is 1345 deprecated. Please use `ServerResponse.prototype.writeHead()` instead. 1347 The `ServerResponse.prototype.writeHeader()` method was never documented as an 3021 [`http.ServerResponse`][], and [`http.IncomingMessage`][] are all stream-based. 3394 [`http.ServerResponse`]: http.md#class-httpserverresponse
|
D | http2.md | 2477 * `Http1ServerResponse` {http.ServerResponse} Specifies the `ServerResponse` 2479 `http.ServerResponse`. **Default:** `http.ServerResponse`. 3640 description: This method now returns a reference to `ServerResponse`.
|
D | errors.md | 1418 The given [`ServerResponse`][] was already assigned a socket. 3555 [`ServerResponse`]: http.md#class-httpserverresponse
|
D | stream.md | 362 // `res` is an http.ServerResponse, which is a writable stream.
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 139 'http.ServerResponse': 'http.html#class-httpserverresponse',
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 870 * http: make http.ServerResponse no longer emit 'end' (isaacs) 894 * http: make http.ServerResponse emit 'end' (Ben Noordhuis) 2519 * [#1374](https://github.com/joyent/node/issues/1374) fix setting ServerResponse.statusCode in writ… 2637 * [#1374](https://github.com/joyent/node/issues/1374) fix setting ServerResponse.statusCode in writ… 3742 * http.ServerResponse.prototype.sendHeader() renamed to
|
D | CHANGELOG_V012.md | 101 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V010.md | 116 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V18.md | 2214 …* (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) [#44180](https://github.com… 2264 …d9e)] - **(SEMVER-MINOR)** **http**: add writeEarlyHints function to ServerResponse (Wing) [#44180… 3885 ….com/nodejs/node/commit/e61b62b9d4)] - **doc**: improve doc for http.ServerResponse inheritance (L…
|
D | CHANGELOG_V4.md | 1270 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V14.md | 3491 …mmit/feb6e1ffb8)] - **http**: don't throw on `Uint8Array`s for `http.ServerResponse#write` (Pransh…
|
D | CHANGELOG_V10.md | 2588 …ttps://github.com/nodejs/node/commit/797229810e)] - **doc**: clarify ServerResponse explanations (…
|