Home
last modified time | relevance | path

Searched refs:writableLength (Results 1 – 16 of 16) sorted by relevance

/third_party/node/test/parallel/
Dtest-http-outgoing-properties.js23 assert.strictEqual(res.writableLength, 0);
25 const len = res.writableLength;
27 assert.strictEqual(res.writableLength, len + 8);
30 assert.strictEqual(res.writableLength, 0);
50 assert.strictEqual(msg.writableLength, 0);
52 assert.strictEqual(msg.writableLength, 7);
Dtest-http2-res-writable-properties.js10 assert.strictEqual(res.writableLength, 0);
12 const len = res.writableLength;
14 assert.strictEqual(res.writableLength, len + 3);
17 assert.strictEqual(res.writableLength, 0);
Dtest-stream2-writable.js116 assert(tw.writableLength >= 50);
/third_party/node/test/pummel/
Dtest-net-throttle.js48 connection.writableLength <= totalLength,
49 `writableLength: ${connection.writableLength}, totalLength: ${totalLength}`
/third_party/node/lib/internal/streams/
Dduplex.js82 writableLength: property
Dwritable.js771 writableLength: { property
/third_party/node/lib/internal/http2/
Dcompat.js536 get writableLength() { getter in Http2ServerResponse
537 return this[kStream].writableLength;
Dcore.js1964 return this[kState].writeQueueSize + this.writableLength;
/third_party/node/lib/
D_http_outgoing.js138 (!this.socket || this.socket.writableLength === 0)
151 return this.outputSize + (this.socket ? this.socket.writableLength : 0);
Dnet.js568 return this.writableLength;
648 else if (!this.writableLength)
650 } else if (!this.destroyed && !this.writable && !this.writableLength)
Dzlib.js415 if (this.writableEnded && this.writableLength === chunk.byteLength) {
/third_party/node/doc/api/
Dnet.md683 > Stability: 0 - Deprecated: Use [`writable.writableLength`][] instead.
1456 [`writable.writableLength`]: stream.md#stream_writable_writablelength
Ddeprecations.md2627 [`socket.bufferSize`][] is just an alias for [`writable.writableLength`][].
2790 [`writable.writableLength`]: stream.md#stream_writable_writablelength
Dhttp.md2503 ### `outgoingMessage.writableLength`
2510 Readonly, This `outgoingMessage.writableLength` contains the number of
Dstream.md605 ##### `writable.writableLength`
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2112 …* Added three properties to `OutgoingMessage.prototype`: `writableObjectMode`, `writableLength` an…