/third_party/node/test/parallel/ |
D | test-stream-writable-write-error.js | 30 function test(autoDestroy) { argument 33 autoDestroy, property 42 autoDestroy, property 50 autoDestroy, property 58 autoDestroy, property
|
D | test-stream-auto-destroy.js | 8 autoDestroy: true, property 32 autoDestroy: true, property 56 autoDestroy: true, property 93 autoDestroy: true, property 107 autoDestroy: true, property
|
D | test-stream2-readable-wrap-error.js | 16 const r = new Readable({ autoDestroy: true }) property 29 const r = new Readable({ autoDestroy: false }) property
|
D | test-stream-pipe-error-handling.js | 65 const r = new R({ autoDestroy: false }); property 66 const w = new W({ autoDestroy: false }); property
|
D | test-stream-finished.js | 294 autoDestroy: false property 307 autoDestroy: false property 317 autoDestroy: false property 407 autoDestroy: false property
|
D | test-stream-duplex-destroy.js | 201 autoDestroy: true, property 213 autoDestroy: true, property 224 autoDestroy: true, property
|
D | test-stream-pipe-error-unhandled.js | 16 autoDestroy: true, property
|
D | test-stream-writable-null.js | 9 super({ autoDestroy: false, ...options }); property
|
D | test-stream-writable-destroy.js | 263 autoDestroy: true property 370 autoDestroy: false property 408 autoDestroy: false, property
|
D | test-stream2-pipe-error-handling.js | 83 const dest = new stream.Writable({ autoDestroy: false }); property
|
D | test-stream-unshift-read-race.js | 35 const r = stream.Readable({ highWaterMark: hwm, autoDestroy: false }); property
|
/third_party/node/deps/npm/node_modules/through/ |
D | index.js | 23 stream.autoDestroy = !(opts && opts.autoDestroy === false) 57 if(!stream.writable && stream.autoDestroy) 66 if(!stream.readable && stream.autoDestroy)
|
D | readme.markdown | 46 ### 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/ |
D | streams.js | 40 if (options.autoDestroy === undefined) { 41 options.autoDestroy = false; 239 if (options.autoDestroy === undefined) { 240 options.autoDestroy = options.autoClose === undefined ? 287 this.autoClose = options.autoDestroy;
|
D | sync_write_stream.js | 11 Writable.call(this, { autoDestroy: true }); property
|
/third_party/node/deps/npm/node_modules/pumpify/ |
D | index.js | 58 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/ |
D | destroy.js | 98 …if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.…
|
/third_party/node/lib/internal/streams/ |
D | writable.js | 169 this.autoDestroy = !options || options.autoDestroy !== false; 659 if (state.autoDestroy) { 663 const autoDestroy = !rState || ( 664 rState.autoDestroy && 669 if (autoDestroy) {
|
D | destroy.js | 152 if ((r && r.autoDestroy) || (w && w.autoDestroy))
|
D | readable.js | 126 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/ |
D | index.js | 15 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/ |
D | test-stream-writable-sync-error.js | 17 super({ autoDestroy: false }); property
|
/third_party/node/lib/internal/ |
D | heap_utils.js | 16 super({ autoDestroy: true }); property
|
/third_party/node/deps/npm/node_modules/through/test/ |
D | auto-destroy.js | 8 ts.autoDestroy = false
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 180 this.autoDestroy = !!options.autoDestroy; // count buffered requests 626 if (state.autoDestroy) { 631 if (!rState || rState.autoDestroy && rState.endEmitted) {
|