Home
last modified time | relevance | path

Searched refs:IncomingMessage (Results 1 – 25 of 37) sorted by relevance

12

/third_party/node/lib/
D_http_incoming.js42 function IncomingMessage(socket) { class
84 ObjectSetPrototypeOf(IncomingMessage.prototype, Stream.Readable.prototype);
85 ObjectSetPrototypeOf(IncomingMessage, Stream.Readable);
87 ObjectDefineProperty(IncomingMessage.prototype, 'connection', {
96 IncomingMessage.prototype.setTimeout = function setTimeout(msecs, callback) {
111 IncomingMessage.prototype._read = function _read(n) {
128 IncomingMessage.prototype.destroy = function destroy(error) {
135 IncomingMessage.prototype._addHeaderLines = _addHeaderLines;
269 IncomingMessage.prototype._addHeaderLine = _addHeaderLine;
297 IncomingMessage.prototype._dump = function _dump() {
[all …]
Dhttp.js31 const { IncomingMessage } = require('_http_incoming');
116 IncomingMessage, property
D_http_common.js37 IncomingMessage,
95 IncomingMessage;
D_http_server.js60 const { IncomingMessage } = require('_http_incoming');
341 this[kIncomingMessage] = options.IncomingMessage || IncomingMessage;
/third_party/node/test/parallel/
Dtest-http-incoming-matchKnownFields.js4 const IncomingMessage = require('http').IncomingMessage; constant
9 const incomingMessage = new IncomingMessage(field);
Dtest-http-server-options-incoming-message.js13 class MyIncomingMessage extends http.IncomingMessage {
20 IncomingMessage: MyIncomingMessage property
Dtest-https-server-options-incoming-message.js19 class MyIncomingMessage extends http.IncomingMessage {
29 IncomingMessage: MyIncomingMessage property
Dtest-http-incoming-message-destroy.js8 const incomingMessage = new http.IncomingMessage();
Dtest-http-incoming-message-connection-setter.js10 const incomingMessage = new http.IncomingMessage();
Dtest-http-client-abort-response-event.js21 req.emit('response', new http.IncomingMessage(new net.Socket()));
Dtest-http-set-timeout-server.js67 assert.ok(s instanceof http.IncomingMessage);
101 assert.ok(s instanceof http.IncomingMessage);
Dtest-https-set-timeout-server.js80 assert.ok(s instanceof http.IncomingMessage);
120 assert.ok(s instanceof http.IncomingMessage);
Dtest-http2-https-fallback-http-server-options.js31 class MyIncomingMessage extends http.IncomingMessage {
/third_party/typescript/tests/baselines/reference/user/
DTypeScript-WeChat-Starter.log3 …ct/index.d.ts(20,42): error TS2689: Cannot extend an interface 'http.IncomingMessage'. Did you mea…
/third_party/node/deps/npm/node_modules/agentkeepalive/
Dindex.d.ts32 createSocket(req: http.IncomingMessage, options: http.RequestOptions, cb: Function): void;
/third_party/node/doc/api/
Dhttp.md367 argument which is an instance of [`http.IncomingMessage`][].
401 * `response` {http.IncomingMessage}
526 * `response` {http.IncomingMessage}
557 * `response` {http.IncomingMessage}
1036 * `request` {http.IncomingMessage}
1056 * `request` {http.IncomingMessage}
1155 * `request` {http.IncomingMessage} Arguments for the HTTP request, as it is in
1201 * `request` {http.IncomingMessage}
1217 * `request` {http.IncomingMessage} Arguments for the HTTP request, as it is in
1907 ## Class: `http.IncomingMessage`
[all …]
Dhttp2.md2233 * `Http1IncomingMessage` {http.IncomingMessage} Specifies the
2234 `IncomingMessage` class to used for HTTP/1 fallback. Useful for extending
2235 the original `http.IncomingMessage`. **Default:** `http.IncomingMessage`.
/third_party/node/tools/doc/
Dtype-parser.mjs100 'http.IncomingMessage': 'http.html#http_class_http_incomingmessage',
/third_party/node/deps/npm/node_modules/form-data/
DREADME.md.bak70 // res – response object (http.IncomingMessage) //
DREADME.md70 // res – response object (http.IncomingMessage) //
/third_party/node/deps/npm/node_modules/request/
DREADME.md71 …se is received. The `response` argument will be an instance of [http.IncomingMessage](https://node…
789 … (available from the `response` event) which is the unmodified `http.IncomingMessage` object which…
856 2. An [`http.IncomingMessage`](https://nodejs.org/api/http.html#http_class_http_incomingmessage) ob…
1026 // unmodified http.IncomingMessage object
DCHANGELOG.md101 - [#2212](https://github.com/request/request/pull/2212) Fix link to http.IncomingMessage documentat…
147 - [#1958](https://github.com/request/request/pull/1958) Use IncomingMessage.destroy method (@simov)
/third_party/node/lib/internal/http2/
Dcore.js3033 http.IncomingMessage;
/third_party/node/doc/changelogs/
DCHANGELOG_V14.md1792 …/node/commit/926bb4fd17)] - **http**: explain the unused argument in IncomingMessage.\_read (Qingy…
2178 …odejs/node/commit/4264d9aa67)] - ***Revert*** "**http**: lazy create IncomingMessage.headers" (Bet…
2305 …//github.com/nodejs/node/commit/b58725c4c0)] - **http**: lazy create IncomingMessage.headers (Robe…
3393 …/commit/c7959557db)] - **(SEMVER-MINOR)** **http**: return this from IncomingMessage#destroy() (Co…
3565 …ub.com/nodejs/node/commit/6dbd63c8ba)] - ***Revert*** "**http**: set IncomingMessage.destroyed" (R…
3790 …](https://github.com/nodejs/node/commit/b634d4b000)] - **http**: set IncomingMessage.destroyed (Ro…
4216 …ommit/c1b2f6afbe)] - **(SEMVER-MAJOR)** **http**: detach socket from IncomingMessage on keep-alive…
DCHANGELOG_V13.md921 …de/commit/7815d5f2cb)] - **doc**: update message.url example in http.IncomingMessage (Tadao Iseki)…
1340 …ttps://github.com/nodejs/node/commit/a25626c1ed)] - **doc**: clarify IncomingMessage.destroy() des…
1763 …/nodejs/node/commit/2505f678ef)] - **http**: support readable hwm in IncomingMessage (Colin Ihrig)…

12