Home
last modified time | relevance | path

Searched refs:autoDestroy (Results 1 – 25 of 41) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-stream-writable-write-error.js30 function test(autoDestroy) { argument
33 autoDestroy, property
42 autoDestroy, property
50 autoDestroy, property
58 autoDestroy, property
Dtest-stream-auto-destroy.js8 autoDestroy: true, property
32 autoDestroy: true, property
56 autoDestroy: true, property
93 autoDestroy: true, property
107 autoDestroy: true, property
Dtest-stream2-readable-wrap-error.js16 const r = new Readable({ autoDestroy: true }) property
29 const r = new Readable({ autoDestroy: false }) property
Dtest-stream-pipe-error-handling.js65 const r = new R({ autoDestroy: false }); property
66 const w = new W({ autoDestroy: false }); property
Dtest-stream-finished.js294 autoDestroy: false property
307 autoDestroy: false property
317 autoDestroy: false property
407 autoDestroy: false property
Dtest-stream-duplex-destroy.js201 autoDestroy: true, property
213 autoDestroy: true, property
224 autoDestroy: true, property
Dtest-stream-pipe-error-unhandled.js16 autoDestroy: true, property
Dtest-stream-writable-null.js9 super({ autoDestroy: false, ...options }); property
Dtest-stream-writable-destroy.js263 autoDestroy: true property
370 autoDestroy: false property
408 autoDestroy: false, property
Dtest-stream2-pipe-error-handling.js83 const dest = new stream.Writable({ autoDestroy: false }); property
Dtest-stream-unshift-read-race.js35 const r = stream.Readable({ highWaterMark: hwm, autoDestroy: false }); property
/third_party/node/deps/npm/node_modules/through/
Dindex.js23 stream.autoDestroy = !(opts && opts.autoDestroy === false)
57 if(!stream.writable && stream.autoDestroy)
66 if(!stream.readable && stream.autoDestroy)
Dreadme.markdown46 ### autoDestroy=false
50 If that is not desired, set `autoDestroy=false`.
56 var ts = through(write, end, {autoDestroy: false})
59 ts.autoDestroy = false
/third_party/node/lib/internal/fs/
Dstreams.js40 if (options.autoDestroy === undefined) {
41 options.autoDestroy = false;
239 if (options.autoDestroy === undefined) {
240 options.autoDestroy = options.autoClose === undefined ?
287 this.autoClose = options.autoDestroy;
Dsync_write_stream.js11 Writable.call(this, { autoDestroy: true }); property
/third_party/node/deps/npm/node_modules/pumpify/
Dindex.js58 module.exports = define({autoDestroy:false, destroy:false}) property
59 module.exports.obj = define({autoDestroy: false, destroy:false, objectMode:true, highWaterMark:16}) property
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Ddestroy.js98 …if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.…
/third_party/node/lib/internal/streams/
Dwritable.js169 this.autoDestroy = !options || options.autoDestroy !== false;
659 if (state.autoDestroy) {
663 const autoDestroy = !rState || (
664 rState.autoDestroy &&
669 if (autoDestroy) {
Ddestroy.js152 if ((r && r.autoDestroy) || (w && w.autoDestroy))
Dreadable.js126 this.autoDestroy = !options || options.autoDestroy !== false;
1147 if (state.autoDestroy || !endEmitted) {
1337 } else if (state.autoDestroy) {
1341 const autoDestroy = !wState || (
1342 wState.autoDestroy &&
1348 if (autoDestroy) {
/third_party/node/deps/npm/node_modules/duplexify/
Dindex.js15 var autoDestroy = function (self, err) { function
21 if (err) autoDestroy(self, err.message === 'premature close' ? null : err)
46 this._autoDestroy = !opts || opts.autoDestroy !== false
/third_party/node/test/known_issues/
Dtest-stream-writable-sync-error.js17 super({ autoDestroy: false }); property
/third_party/node/lib/internal/
Dheap_utils.js16 super({ autoDestroy: true }); property
/third_party/node/deps/npm/node_modules/through/test/
Dauto-destroy.js8 ts.autoDestroy = false
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_writable.js180 this.autoDestroy = !!options.autoDestroy; // count buffered requests
626 if (state.autoDestroy) {
631 if (!rState || rState.autoDestroy && rState.endEmitted) {

12