Home
last modified time | relevance | path

Searched refs:OutgoingMessage (Results 1 – 25 of 31) 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();
77 assert(OutgoingMessage.prototype.write.call({ _header: 'test' }));
80 const outgoingMessage = new OutgoingMessage();
90 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-buffer.js8 const OutgoingMessage = http.OutgoingMessage; constant
10 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-internal-headernames-getter.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);
/third_party/node/lib/
D_http_outgoing.js87 function OutgoingMessage() { class
130 ObjectSetPrototypeOf(OutgoingMessage.prototype, Stream.prototype);
131 ObjectSetPrototypeOf(OutgoingMessage, Stream);
133 ObjectDefineProperty(OutgoingMessage.prototype, 'writableFinished', {
143 ObjectDefineProperty(OutgoingMessage.prototype, 'writableObjectMode', {
149 ObjectDefineProperty(OutgoingMessage.prototype, 'writableLength', {
155 ObjectDefineProperty(OutgoingMessage.prototype, 'writableHighWaterMark', {
161 ObjectDefineProperty(OutgoingMessage.prototype, 'writableCorked', {
168 ObjectDefineProperty(OutgoingMessage.prototype, '_headers', {
188 ObjectDefineProperty(OutgoingMessage.prototype, 'connection', {
[all …]
Dhttp.js35 OutgoingMessage
117 OutgoingMessage, property
D_http_client.js49 const { OutgoingMessage } = require('_http_outgoing');
94 OutgoingMessage.call(this);
333 ObjectSetPrototypeOf(ClientRequest.prototype, OutgoingMessage.prototype);
334 ObjectSetPrototypeOf(ClientRequest, OutgoingMessage);
338 OutgoingMessage.prototype._finish.call(this); class
D_http_server.js50 const { OutgoingMessage } = require('_http_outgoing');
167 OutgoingMessage.call(this);
187 ObjectSetPrototypeOf(ServerResponse.prototype, OutgoingMessage.prototype);
188 ObjectSetPrototypeOf(ServerResponse, OutgoingMessage);
195 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.md43 ### DEP0001: `http.OutgoingMessage.prototype.flush`
61 `OutgoingMessage.prototype.flush()` has been removed. Use
62 `OutgoingMessage.prototype.flushHeaders()` instead.
1325 ### DEP0066: `OutgoingMessage.prototype._headers, OutgoingMessage.prototype._headerNames`
1338 The `http` module `OutgoingMessage.prototype._headers` and
1339 `OutgoingMessage.prototype._headerNames` properties are deprecated. Use one of
1340 the public methods (e.g. `OutgoingMessage.prototype.getHeader()`,
1341 `OutgoingMessage.prototype.getHeaders()`,
1342 `OutgoingMessage.prototype.getHeaderNames()`,
1343 `OutgoingMessage.prototype.getRawHeaderNames()`,
[all …]
Dhttp.md2193 ## Class: `http.OutgoingMessage`
2399 Since `OutgoingMessage` should be a write-only stream,
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md992 …node/commit/35a33f6e01)] - **http**: add captureRejection support to OutgoingMessage (Matteo Colli…
2112 …* Added three properties to `OutgoingMessage.prototype`: `writableObjectMode`, `writableLength` an…
2172 …- **(SEMVER-MINOR)** **http**: add missing stream-like properties to OutgoingMessage (Robert Nagy)…
3015 …ttps://github.com/nodejs/node/commit/9d9b32eff5)] - **doc**: fix for OutgoingMessage.prototype.\_h…
DCHANGELOG_ARCHIVE.md2100 * [#752](https://github.com/joyent/node/issues/752) Remove headers sent check in OutgoingMessage.ge…
DCHANGELOG_V14.md1164 …com/nodejs/node/commit/19e8ae44c4)] - **doc**: add document for http.OutgoingMessage (Qingyu Deng)…
3391 …/commit/e1e3ae1567)] - **(SEMVER-MINOR)** **http**: return this from OutgoingMessage#destroy() (Co…
4217 …nodejs/node/commit/173d044d09)] - **(SEMVER-MAJOR)** **http**: align OutgoingMessage and ClientReq…
DCHANGELOG_V8.md3632 * [[`63aee3b4c8`](https://github.com/nodejs/node/commit/63aee3b4c8)] - **http**: OutgoingMessage ch…
4210 * New methods for accessing HTTP headers have been added to `OutgoingMessage`
4513 …mit/3e6f1032a4)] - **(SEMVER-MINOR)** **http**: add new functions to OutgoingMessage (Brian White)…
DCHANGELOG_V5.md1584 …* _(Breaking)_ The `callback` argument to `OutgoingMessage#setTimeout()` must be a function or a `…

12