Home
last modified time | relevance | path

Searched refs:_writev (Results 1 – 25 of 34) 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/lib/internal/streams/
Dwritable.js241 this._writev = options.writev;
375 stream._writev(chunk, state.onwrite);
508 if (bufferedLength > 1 && stream._writev) {
545 if (this._writev) {
546 this._writev([{ chunk, encoding }], cb);
552 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/
D_stream_writable.js277 stream._writev(chunk, state.onwrite);
358 if (stream._writev && state.buffer.length > 1) {
411 Writable.prototype._writev = null; method in Writable
/third_party/node/lib/internal/fs/
Dstreams.js275 this._writev = null;
376 WriteStream.prototype._writev = function(data, cb) { method in WriteStream
379 this._writev(data, cb);
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_writable.js247 if (typeof options.writev === 'function') this._writev = options.writev;
409 …state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwr…
488 if (stream._writev && entry && entry.next) {
549 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 Writable.prototype._writev = null; method in Writable
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
D_stream_writable.js272 if (typeof options.writev === 'function') this._writev = options.writev;
428 …if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite…
510 if (stream._writev && entry && entry.next) {
571 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/worker/
Dio.js239 _writev(chunks, cb) { method in WritableWorkerStdio
/third_party/node/doc/api/
Dstream.md376 all to `writable._writev()`, if present. This prevents a head-of-line blocking
379 `writable._writev()` may have an adverse effect on throughput.
381 See also: [`writable.uncork()`][], [`writable._writev()`][stream-_writev].
1884 | Writing only | [`Writable`][] | [`_write()`][stream-_write], [`_writev()`][stream-_writev], [`_fi…
1885 …[] | [`_read()`][stream-_read], [`_write()`][stream-_write], [`_writev()`][stream-_writev], [`_fin…
1925 constructor and implement the `writable._write()` and/or `writable._writev()`
1969 [`stream._writev()`][stream-_writev] method.
2024 description: _write() is optional when providing _writev().
2040 [`writable._writev()`][stream-_writev] method to send data to the underlying
2060 data at once, the `writable._writev()` method should be implemented.
[all …]
/third_party/node/lib/
Dnet.js348 this._writev = null;
804 Socket.prototype._writev = function(chunks, cb) { method in Socket
/third_party/node/lib/internal/http2/
Dcore.js2120 _writev(data, cb) { method in Http2Stream
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md2124 * [[`3ab9b92e90`](https://github.com/nodejs/node/commit/3ab9b92e90)] - **doc**: fix stream `_writev
2734 implementers, one can signal that a stream is bulk-writable by specifying a [_writev](https://iojs.…
2744 The only core stream API that **currently** implements `_writev` is `net.Socket`.

12