Home
last modified time | relevance | path

Searched refs:ServerResponse (Results 1 – 25 of 27) sorted by relevance

12

/third_party/node/lib/
D_http_server.js194 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 …]
Dhttp.js44 ServerResponse,
125 ServerResponse, property
/third_party/node/test/parallel/
Dtest-http-outgoing-proto.js8 const ServerResponse = http.ServerResponse; constant
13 typeof ServerResponse.prototype._implicitHeader, 'function');
Dtest-http-server-response-standalone.js4 const { ServerResponse } = require('http');
12 const res = new ServerResponse({
Dtest-http-server-options-server-response.js13 class MyServerResponse extends http.ServerResponse {
20 ServerResponse: MyServerResponse property
Dtest-https-server-options-server-response.js19 class MyServerResponse extends http.ServerResponse {
29 ServerResponse: MyServerResponse property
Dtest-http-outgoing-message-write-callback.js22 const res = new http.ServerResponse({
Dtest-child-process-http-socket-leak.js12 const res = new http.ServerResponse(req);
Dtest-http2-https-fallback-http-server-options.js37 class MyServerResponse extends http.ServerResponse {
/third_party/node/lib/internal/http2/
Dcompat.js883 function onServerStream(ServerRequest, ServerResponse, argument
887 const response = new ServerResponse(stream);
Dcore.js3121 http.ServerResponse;
/third_party/node/doc/api/
Dhttp.md1255 * `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 …]
Ddiagnostics_channel.md432 * `response` {http.ServerResponse}
441 * `response` {http.ServerResponse}
Ddeprecations.md1333 ### 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
Dhttp2.md2477 * `Http1ServerResponse` {http.ServerResponse} Specifies the `ServerResponse`
2479 `http.ServerResponse`. **Default:** `http.ServerResponse`.
3640 description: This method now returns a reference to `ServerResponse`.
Derrors.md1418 The given [`ServerResponse`][] was already assigned a socket.
3555 [`ServerResponse`]: http.md#class-httpserverresponse
Dstream.md362 // `res` is an http.ServerResponse, which is a writable stream.
/third_party/node/tools/doc/
Dtype-parser.mjs139 'http.ServerResponse': 'http.html#class-httpserverresponse',
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md870 * 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
DCHANGELOG_V012.md101 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V010.md116 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V18.md2214 …* (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…
DCHANGELOG_V4.md1270 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V14.md3491 …mmit/feb6e1ffb8)] - **http**: don't throw on `Uint8Array`s for `http.ServerResponse#write` (Pransh…
DCHANGELOG_V10.md2588 …ttps://github.com/nodejs/node/commit/797229810e)] - **doc**: clarify ServerResponse explanations (…

12