Searched refs:ServerResponse (Results 1 – 24 of 24) sorted by relevance
/third_party/node/lib/ |
D | _http_server.js | 166 function ServerResponse(req) { class 187 ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype); 188 ObjectSetPrototypeOf(ServerResponse, OutgoingMessage); 190 ServerResponse.prototype._finish = function _finish() { 199 ServerResponse.prototype.statusCode = 200; 200 ServerResponse.prototype.statusMessage = undefined; 224 ServerResponse.prototype.assignSocket = function assignSocket(socket) { 233 ServerResponse.prototype.detachSocket = function detachSocket(socket) { 240 ServerResponse.prototype.writeContinue = function writeContinue(cb) { 245 ServerResponse.prototype.writeProcessing = function writeProcessing(cb) { [all …]
|
D | http.js | 41 ServerResponse 119 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 | 808 function onServerStream(ServerRequest, ServerResponse, argument 812 const response = new ServerResponse(stream);
|
D | core.js | 3035 http.ServerResponse;
|
/third_party/node/doc/api/ |
D | http.md | 1037 * `response` {http.ServerResponse} 1057 * `response` {http.ServerResponse} 1202 * `response` {http.ServerResponse} 1366 ## Class: `http.ServerResponse` 1449 description: This method now returns a reference to `ServerResponse`. 1614 * Returns: {http.ServerResponse} 1667 * Returns: {http.ServerResponse} 1840 * Returns: {http.ServerResponse} 1852 Returns a reference to the `ServerResponse`, so that calls can be chained. 2201 and [`http.ServerResponse`][]. It is an abstract of outgoing message from [all …]
|
D | deprecations.md | 1260 ### DEP0063: `ServerResponse.prototype.writeHeader()` 1270 The `http` module `ServerResponse.prototype.writeHeader()` API is 1271 deprecated. Please use `ServerResponse.prototype.writeHead()` instead. 1273 The `ServerResponse.prototype.writeHeader()` method was never documented as an
|
D | http2.md | 2236 * `Http1ServerResponse` {http.ServerResponse} Specifies the `ServerResponse` 2238 `http.ServerResponse`. **Default:** `http.ServerResponse`. 3345 description: This method now returns a reference to `ServerResponse`.
|
D | stream.md | 130 // `res` is an http.ServerResponse, which is a writable stream.
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 102 'http.ServerResponse': 'http.html#http_class_http_serverresponse',
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 843 * http: make http.ServerResponse no longer emit 'end' (isaacs) 866 * http: make http.ServerResponse emit 'end' (Ben Noordhuis) 2242 * [#1374](https://github.com/joyent/node/issues/1374) fix setting ServerResponse.statusCode in writ… 2328 * [#1374](https://github.com/joyent/node/issues/1374) fix setting ServerResponse.statusCode in writ… 3148 * http.ServerResponse.prototype.sendHeader() renamed to
|
D | CHANGELOG_V012.md | 96 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V010.md | 112 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V4.md | 1251 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
D | CHANGELOG_V14.md | 3566 …mmit/feb6e1ffb8)] - **http**: don't throw on `Uint8Array`s for `http.ServerResponse#write` (Pransh…
|
D | CHANGELOG_V10.md | 2320 …ttps://github.com/nodejs/node/commit/797229810e)] - **doc**: clarify ServerResponse explanations (…
|
D | CHANGELOG_V6.md | 3624 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
|
/third_party/node/deps/npm/node_modules/request/ |
D | README.md | 108 You can also `pipe()` from `http.ServerRequest` instances, as well as to `http.ServerResponse` inst…
|