Searched refs:writableLength (Results 1 – 16 of 16) sorted by relevance
/third_party/node/test/parallel/ |
D | test-http-outgoing-properties.js | 23 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);
|
D | test-http2-res-writable-properties.js | 10 assert.strictEqual(res.writableLength, 0); 12 const len = res.writableLength; 14 assert.strictEqual(res.writableLength, len + 3); 17 assert.strictEqual(res.writableLength, 0);
|
D | test-stream2-writable.js | 116 assert(tw.writableLength >= 50);
|
/third_party/node/test/pummel/ |
D | test-net-throttle.js | 48 connection.writableLength <= totalLength, 49 `writableLength: ${connection.writableLength}, totalLength: ${totalLength}`
|
/third_party/node/lib/internal/streams/ |
D | duplex.js | 82 writableLength: property
|
D | writable.js | 771 writableLength: { property
|
/third_party/node/lib/internal/http2/ |
D | compat.js | 536 get writableLength() { getter in Http2ServerResponse 537 return this[kStream].writableLength;
|
D | core.js | 1964 return this[kState].writeQueueSize + this.writableLength;
|
/third_party/node/lib/ |
D | _http_outgoing.js | 138 (!this.socket || this.socket.writableLength === 0) 151 return this.outputSize + (this.socket ? this.socket.writableLength : 0);
|
D | net.js | 568 return this.writableLength; 648 else if (!this.writableLength) 650 } else if (!this.destroyed && !this.writable && !this.writableLength)
|
D | zlib.js | 415 if (this.writableEnded && this.writableLength === chunk.byteLength) {
|
/third_party/node/doc/api/ |
D | net.md | 683 > Stability: 0 - Deprecated: Use [`writable.writableLength`][] instead. 1456 [`writable.writableLength`]: stream.md#stream_writable_writablelength
|
D | deprecations.md | 2627 [`socket.bufferSize`][] is just an alias for [`writable.writableLength`][]. 2790 [`writable.writableLength`]: stream.md#stream_writable_writablelength
|
D | http.md | 2503 ### `outgoingMessage.writableLength` 2510 Readonly, This `outgoingMessage.writableLength` contains the number of
|
D | stream.md | 605 ##### `writable.writableLength`
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V12.md | 2112 …* Added three properties to `OutgoingMessage.prototype`: `writableObjectMode`, `writableLength` an…
|