/third_party/node/test/parallel/ |
D | test-stream-writable-constructor-set-methods.js | 25 const _writev = common.mustCall((chunks, next) => { constant 30 const w2 = new Writable({ write: _write, writev: _writev }); 33 assert.strictEqual(w2._writev, _writev);
|
D | test-pipe-writev.js | 18 const writev = connection._writev.bind(connection); 19 connection._writev = common.mustCall(writev);
|
D | test-stream-writable-write-writev-finish.js | 49 writable._writev = (chunks, cb) => { function in writable 74 writable._writev = (chunks, cb) => { function in writable
|
D | test-http-sync-write-error-during-continue.js | 37 clientSide._writev = null;
|
D | test-stream-writableState-uncorked-bufferedRequestCount.js | 9 writable._writev = common.mustCall((chunks, cb) => {
|
D | test-stream-writev.js | 84 w._writev = function(chunks, cb) { function
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | writable.js | 216 if (typeof options.writev === 'function') this._writev = options.writev 348 else if (writev) stream._writev(chunk, state.onwrite) 478 if (bufferedLength > 1 && stream._writev) { 512 if (this._writev) { 513 this._writev( 526 Writable.prototype._writev = null method in Writable
|
/third_party/node/lib/internal/streams/ |
D | writable.js | 243 this._writev = options.writev; 409 stream._writev(chunk, state.onwrite); 550 if (bufferedLength > 1 && stream._writev) { 588 if (this._writev) { 589 this._writev([{ chunk, encoding }], cb); 595 Writable.prototype._writev = null; method in Writable
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 252 if (typeof options.writev === 'function') this._writev = options.writev; 390 …state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwr… 461 if (stream._writev && entry && entry.next) { 515 Writable.prototype._writev = null; method in Writable
|
/third_party/node/benchmark/streams/ |
D | writable-manywrites.js | 27 s._writev = (chunks, cb) => writecb(cb); function
|
/third_party/node/lib/internal/fs/ |
D | streams.js | 358 this._writev = null; 472 WriteStream.prototype._writev = function(data, cb) { method in WriteStream
|
/third_party/FreeBSD/lib/libc/include/ |
D | namespace.h | 242 #define writev _writev
|
/third_party/node/doc/api/ |
D | stream.md | 616 all to `writable._writev()`, if present. This prevents a head-of-line blocking 619 `writable._writev()` may have an adverse effect on throughput. 621 See also: [`writable.uncork()`][], [`writable._writev()`][stream-_writev]. 3404 … | [`Writable`][] | [`_write()`][stream-_write], [`_writev()`][stream-_writev], [`_fin… 3405 … | [`_read()`][stream-_read], [`_write()`][stream-_write], [`_writev()`][stream-_writev], [`_fin… 3452 constructor and implement the `writable._write()` and/or `writable._writev()` 3500 [`stream._writev()`][stream-_writev] method. 3632 description: _write() is optional when providing _writev(). 3648 [`writable._writev()`][stream-_writev] method to send data to the underlying 3668 data at once, the `writable._writev()` method should be implemented. [all …]
|
D | fs.md | 2551 without `writev()` can reduce performance as some optimizations (`_writev()`)
|
/third_party/node/lib/internal/worker/ |
D | io.js | 368 _writev(chunks, cb) { method in WritableWorkerStdio
|
/third_party/node/lib/ |
D | net.js | 452 this._writev = null; 968 Socket.prototype._writev = function(chunks, cb) { method in Socket
|
/third_party/node/lib/internal/http2/ |
D | core.js | 2195 _writev(data, cb) { method in Http2Stream
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_IOJS.md | 2160 …ttps://github.com/nodejs/node/commit/3ab9b92e90)] - **doc**: fix stream `_writev` header size (Ren… 2777 implementers, one can signal that a stream is bulk-writable by specifying a [\_writev](https://iojs… 2787 The only core stream API that **currently** implements `_writev` is `net.Socket`.
|
D | CHANGELOG_ARCHIVE.md | 606 * streams: introduce .cork/.uncork/.\_writev (Fedor Indutny)
|
D | CHANGELOG_V12.md | 1474 * \[[`c502384ab7`](https://github.com/nodejs/node/commit/c502384ab7)] - **worker**: use \_writev in… 2631 * \[[`ff8f0bc3cc`](https://github.com/nodejs/node/commit/ff8f0bc3cc)] - **doc**: explain \_writev()… 4235 …* Make `_write()` optional when `_writev()` is implemented [#29639](https://github.com/nodejs/node… 4358 …bdadf52)] - **(SEMVER-MINOR)** **stream**: make \_write() optional when \_writev() is implemented …
|
D | CHANGELOG_V4.md | 2595 …node/commit/506f2f8ed1)] - **doc**: add anchors for \_transform \_flush \_writev in stream.markdow… 3288 …* `fs.WriteStream` now implements `_writev`, allowing for super-fast bulk writes (Ron Korving) [#2…
|
D | CHANGELOG_V5.md | 1107 …node/commit/5a223d64e3)] - **doc**: add anchors for \_transform \_flush \_writev in stream.markdow…
|
D | CHANGELOG_V14.md | 1588 ….com/nodejs/node/commit/f605bc00ae)] - **doc**: clarify descriptions of \_writev chunks argument (… 3621 * \[[`64cae13799`](https://github.com/nodejs/node/commit/64cae13799)] - **worker**: use \_writev in…
|
D | CHANGELOG_V15.md | 872 ….com/nodejs/node/commit/1a4d34ebd0)] - **doc**: clarify descriptions of \_writev chunks argument (…
|
D | CHANGELOG_V13.md | 923 * \[[`bd54abe3f7`](https://github.com/nodejs/node/commit/bd54abe3f7)] - **doc**: explain \_writev()…
|