Home
last modified time | relevance | path

Searched refs:OutgoingMessage (Results 1 – 25 of 38) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-http-outgoing-proto.js6 const OutgoingMessage = http.OutgoingMessage; constant
17 const outgoingMessage = new OutgoingMessage();
26 const outgoingMessage = new OutgoingMessage();
35 const outgoingMessage = new OutgoingMessage();
44 const outgoingMessage = new OutgoingMessage();
53 const outgoingMessage = new OutgoingMessage();
63 const outgoingMessage = new OutgoingMessage();
78 const outgoingMessage = new OutgoingMessage();
88 const outgoingMessage = new OutgoingMessage();
98 const outgoingMessage = new OutgoingMessage();
[all …]
Dtest-http-outgoing-renderHeaders.js9 const OutgoingMessage = http.OutgoingMessage; constant
12 const outgoingMessage = new OutgoingMessage();
25 const outgoingMessage = new OutgoingMessage();
33 const outgoingMessage = new OutgoingMessage();
40 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-internal-headers.js7 const { OutgoingMessage } = require('http');
14 const outgoingMessage = new OutgoingMessage();
21 const outgoingMessage = new OutgoingMessage();
37 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-properties.js6 const OutgoingMessage = http.OutgoingMessage; constant
9 const msg = new OutgoingMessage();
14 const msg = new OutgoingMessage();
48 const msg = new OutgoingMessage();
Dtest-outgoing-message-pipe.js4 const OutgoingMessage = require('_http_outgoing').OutgoingMessage; constant
8 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-internal-headernames-getter.js4 const { OutgoingMessage } = require('http');
12 const outgoingMessage = new OutgoingMessage();
18 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-buffer.js8 const OutgoingMessage = http.OutgoingMessage; constant
10 const msg = new OutgoingMessage();
Dtest-http-outgoing-destroy.js6 const OutgoingMessage = http.OutgoingMessage; constant
9 const msg = new OutgoingMessage();
Dtest-http-outgoing-settimeout.js5 const { OutgoingMessage } = require('http');
10 const outgoingMessage = new OutgoingMessage();
22 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-internal-headernames-setter.js4 const { OutgoingMessage } = require('http');
11 const outgoingMessage = new OutgoingMessage();
Dtest-http-outgoing-message-inheritance.js4 const { OutgoingMessage } = require('http');
12 class Response extends OutgoingMessage {
Dtest-outgoing-message-destroy.js8 const outgoingMessage = new http.OutgoingMessage();
Dtest-http-set-timeout-server.js88 assert.ok(s instanceof http.OutgoingMessage);
132 assert.ok(s instanceof http.OutgoingMessage);
Dtest-https-set-timeout-server.js104 assert.ok(s instanceof http.OutgoingMessage);
152 assert.ok(s instanceof http.OutgoingMessage);
Dtest-diagnostics-channel-http.js10 const isOutgoingMessage = (object) => object instanceof http.OutgoingMessage;
/third_party/node/lib/
D_http_outgoing.js107 function OutgoingMessage(options) { class
158 ObjectSetPrototypeOf(OutgoingMessage.prototype, Stream.prototype);
159 ObjectSetPrototypeOf(OutgoingMessage, Stream);
161 ObjectDefineProperty(OutgoingMessage.prototype, 'errored', {
168 ObjectDefineProperty(OutgoingMessage.prototype, 'closed', {
175 ObjectDefineProperty(OutgoingMessage.prototype, 'writableFinished', {
186 ObjectDefineProperty(OutgoingMessage.prototype, 'writableObjectMode', {
193 ObjectDefineProperty(OutgoingMessage.prototype, 'writableLength', {
200 ObjectDefineProperty(OutgoingMessage.prototype, 'writableHighWaterMark', {
207 ObjectDefineProperty(OutgoingMessage.prototype, 'writableCorked', {
[all …]
Dhttp.js38 OutgoingMessage,
123 OutgoingMessage, property
D_http_client.js61 OutgoingMessage,
136 FunctionPrototypeCall(OutgoingMessage, this);
371 ObjectSetPrototypeOf(ClientRequest.prototype, OutgoingMessage.prototype);
372 ObjectSetPrototypeOf(ClientRequest, OutgoingMessage);
376 FunctionPrototypeCall(OutgoingMessage.prototype._finish, this);
D_http_server.js54 OutgoingMessage,
195 OutgoingMessage.call(this, options);
228 ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype);
229 ObjectSetPrototypeOf(ServerResponse, OutgoingMessage);
244 OutgoingMessage.prototype._finish.call(this); class
/third_party/node/benchmark/http/
Dset_header.js4 const { OutgoingMessage } = require('_http_outgoing');
20 const og = new OutgoingMessage();
/third_party/node/doc/api/
Ddeprecations.md44 ### DEP0001: `http.OutgoingMessage.prototype.flush`
63 `OutgoingMessage.prototype.flush()` has been removed. Use
64 `OutgoingMessage.prototype.flushHeaders()` instead.
1401 ### DEP0066: `OutgoingMessage.prototype._headers, OutgoingMessage.prototype._headerNames`
1415 The `node:http` module `OutgoingMessage.prototype._headers` and
1416 `OutgoingMessage.prototype._headerNames` properties are deprecated. Use one of
1417 the public methods (e.g. `OutgoingMessage.prototype.getHeader()`,
1418 `OutgoingMessage.prototype.getHeaders()`,
1419 `OutgoingMessage.prototype.getHeaderNames()`,
1420 `OutgoingMessage.prototype.getRawHeaderNames()`,
[all …]
Dhttp.md396 * Extends: {http.OutgoingMessage}
1661 * Extends: {http.OutgoingMessage}
2688 ## Class: `http.OutgoingMessage`
2938 which is the parent class of `http.OutgoingMessage`.
Dperf_hooks.md1582 (`OutgoingMessage`) and HTTP request (`IncomingMessage`). For HTTP client,
/third_party/node/tools/doc/
Dtype-parser.mjs137 'http.OutgoingMessage': 'http.html#class-httpoutgoingmessage',
/third_party/node/doc/changelogs/
DCHANGELOG_V15.md283 …com/nodejs/node/commit/e5f7179d1e)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng)…
955 …node/commit/abae61e230)] - **stream**: finished waits for 'close' on OutgoingMessage (Robert Nagy)…
2240 …com/nodejs/node/commit/a55b77d2d3)] - **stream**: finished on closed OutgoingMessage (Robert Nagy)…

12