Home
last modified time | relevance | path

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

/third_party/node/lib/
D_http_server.js166 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 …]
Dhttp.js41 ServerResponse
119 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.js808 function onServerStream(ServerRequest, ServerResponse, argument
812 const response = new ServerResponse(stream);
Dcore.js3035 http.ServerResponse;
/third_party/node/doc/api/
Dhttp.md1037 * `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 …]
Ddeprecations.md1260 ### 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
Dhttp2.md2236 * `Http1ServerResponse` {http.ServerResponse} Specifies the `ServerResponse`
2238 `http.ServerResponse`. **Default:** `http.ServerResponse`.
3345 description: This method now returns a reference to `ServerResponse`.
Dstream.md130 // `res` is an http.ServerResponse, which is a writable stream.
/third_party/node/tools/doc/
Dtype-parser.mjs102 'http.ServerResponse': 'http.html#http_class_http_serverresponse',
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md843 * 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
DCHANGELOG_V012.md96 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V010.md112 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V4.md1251 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
DCHANGELOG_V14.md3566 …mmit/feb6e1ffb8)] - **http**: don't throw on `Uint8Array`s for `http.ServerResponse#write` (Pransh…
DCHANGELOG_V10.md2320 …ttps://github.com/nodejs/node/commit/797229810e)] - **doc**: clarify ServerResponse explanations (…
DCHANGELOG_V6.md3624 …perly validate for allowable characters in the `reason` argument in `ServerResponse#writeHead()`. …
/third_party/node/deps/npm/node_modules/request/
DREADME.md108 You can also `pipe()` from `http.ServerRequest` instances, as well as to `http.ServerResponse` inst…