/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 67 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-destroy.js | 13 autoDestroy: false, property 22 autoDestroy: false, 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-construct.js | 181 autoDestroy: true, property 200 autoDestroy: true, property 223 autoDestroy: true, property
|
D | test-stream-duplex-destroy.js | 201 autoDestroy: true, property 213 autoDestroy: true, property 224 autoDestroy: true, property
|
D | test-stream-finished.js | 378 autoDestroy: false property 391 autoDestroy: false property 401 autoDestroy: false property 491 autoDestroy: false 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 | 261 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
|
/third_party/node/lib/internal/fs/ |
D | streams.js | 159 if (options.autoDestroy === undefined) { 160 options.autoDestroy = false; 178 options.autoDestroy = options.autoClose === undefined ? 183 if (options.autoDestroy) { 222 return this._readableState.autoDestroy; 225 this._readableState.autoDestroy = val; 333 options.autoDestroy = options.autoClose === undefined ? 349 if (options.autoDestroy) { 383 return this._writableState.autoDestroy; 386 this._writableState.autoDestroy = val;
|
D | sync_write_stream.js | 13 ReflectApply(Writable, this, [{ autoDestroy: true }]); property
|
/third_party/node/deps/undici/src/lib/api/ |
D | api-pipeline.js | 22 super({ autoDestroy: true }) property 45 super({ autoDestroy: true }) property 99 autoDestroy: true, property
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/ |
D | destroy.js | 90 …if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.…
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | writable.js | 170 this.autoDestroy = !options || options.autoDestroy !== false 667 if (state.autoDestroy) { 671 const autoDestroy = 673 (rState.autoDestroy && 677 if (autoDestroy) {
|
D | readable.js | 129 this.autoDestroy = !options || options.autoDestroy !== false 997 (error === undefined || stream._readableState.autoDestroy) 1193 } else if (state.autoDestroy) { 1197 const autoDestroy = 1199 (wState.autoDestroy && 1203 if (autoDestroy) {
|
D | destroy.js | 168 …if ((r !== null && r !== undefined && r.autoDestroy) || (w !== null && w !== undefined && w.autoDe…
|
/third_party/node/lib/internal/streams/ |
D | writable.js | 185 this.autoDestroy = !options || options.autoDestroy !== false; 750 if (state.autoDestroy) { 754 const autoDestroy = !rState || ( 755 rState.autoDestroy && 760 if (autoDestroy) {
|
D | readable.js | 146 this.autoDestroy = !options || options.autoDestroy !== false; 1148 (error === undefined || stream._readableState.autoDestroy) 1372 } else if (state.autoDestroy) { 1376 const autoDestroy = !wState || ( 1377 wState.autoDestroy && 1383 if (autoDestroy) {
|
D | destroy.js | 199 if (r?.autoDestroy || w?.autoDestroy)
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 186 this.autoDestroy = !!options.autoDestroy; 580 if (state.autoDestroy) { 584 if (!rState || rState.autoDestroy && rState.endEmitted) {
|
/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
|