Home
last modified time | relevance | path

Searched refs:_writev (Results 1 – 25 of 27) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-stream-writable-constructor-set-methods.js25 const _writev = common.mustCall((chunks, next) => { constant
30 const w2 = new Writable({ write: _write, writev: _writev });
33 assert.strictEqual(w2._writev, _writev);
Dtest-pipe-writev.js18 const writev = connection._writev.bind(connection);
19 connection._writev = common.mustCall(writev);
Dtest-stream-writable-write-writev-finish.js49 writable._writev = (chunks, cb) => { function in writable
74 writable._writev = (chunks, cb) => { function in writable
Dtest-http-sync-write-error-during-continue.js37 clientSide._writev = null;
Dtest-stream-writableState-uncorked-bufferedRequestCount.js9 writable._writev = common.mustCall((chunks, cb) => {
Dtest-stream-writev.js84 w._writev = function(chunks, cb) { function
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dwritable.js216 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/
Dwritable.js243 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.js252 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/
Dwritable-manywrites.js27 s._writev = (chunks, cb) => writecb(cb); function
/third_party/node/lib/internal/fs/
Dstreams.js358 this._writev = null;
472 WriteStream.prototype._writev = function(data, cb) { method in WriteStream
/third_party/FreeBSD/lib/libc/include/
Dnamespace.h242 #define writev _writev
/third_party/node/doc/api/
Dstream.md616 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 …]
Dfs.md2551 without `writev()` can reduce performance as some optimizations (`_writev()`)
/third_party/node/lib/internal/worker/
Dio.js368 _writev(chunks, cb) { method in WritableWorkerStdio
/third_party/node/lib/
Dnet.js452 this._writev = null;
968 Socket.prototype._writev = function(chunks, cb) { method in Socket
/third_party/node/lib/internal/http2/
Dcore.js2195 _writev(data, cb) { method in Http2Stream
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md2160 …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`.
DCHANGELOG_ARCHIVE.md606 * streams: introduce .cork/.uncork/.\_writev (Fedor Indutny)
DCHANGELOG_V12.md1474 * \[[`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 …
DCHANGELOG_V4.md2595 …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…
DCHANGELOG_V5.md1107 …node/commit/5a223d64e3)] - **doc**: add anchors for \_transform \_flush \_writev in stream.markdow…
DCHANGELOG_V14.md1588 ….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…
DCHANGELOG_V15.md872 ….com/nodejs/node/commit/1a4d34ebd0)] - **doc**: clarify descriptions of \_writev chunks argument (…
DCHANGELOG_V13.md923 * \[[`bd54abe3f7`](https://github.com/nodejs/node/commit/bd54abe3f7)] - **doc**: explain \_writev()…

12