Home
last modified time | relevance | path

Searched refs:autoDestroy (Results 1 – 25 of 46) 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
67 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-destroy.js13 autoDestroy: false, property
22 autoDestroy: false, 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-construct.js181 autoDestroy: true, property
200 autoDestroy: true, property
223 autoDestroy: true, property
Dtest-stream-duplex-destroy.js201 autoDestroy: true, property
213 autoDestroy: true, property
224 autoDestroy: true, property
Dtest-stream-finished.js378 autoDestroy: false property
391 autoDestroy: false property
401 autoDestroy: false property
491 autoDestroy: false property
Dtest-stream-pipe-error-unhandled.js16 autoDestroy: true, property
Dtest-stream-writable-null.js9 super({ autoDestroy: false, ...options }); property
Dtest-stream-writable-destroy.js261 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
/third_party/node/lib/internal/fs/
Dstreams.js159 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;
Dsync_write_stream.js13 ReflectApply(Writable, this, [{ autoDestroy: true }]); property
/third_party/node/deps/undici/src/lib/api/
Dapi-pipeline.js22 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/
Ddestroy.js90 …if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.…
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dwritable.js170 this.autoDestroy = !options || options.autoDestroy !== false
667 if (state.autoDestroy) {
671 const autoDestroy =
673 (rState.autoDestroy &&
677 if (autoDestroy) {
Dreadable.js129 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) {
Ddestroy.js168 …if ((r !== null && r !== undefined && r.autoDestroy) || (w !== null && w !== undefined && w.autoDe…
/third_party/node/lib/internal/streams/
Dwritable.js185 this.autoDestroy = !options || options.autoDestroy !== false;
750 if (state.autoDestroy) {
754 const autoDestroy = !rState || (
755 rState.autoDestroy &&
760 if (autoDestroy) {
Dreadable.js146 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) {
Ddestroy.js199 if (r?.autoDestroy || w?.autoDestroy)
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/
D_stream_writable.js186 this.autoDestroy = !!options.autoDestroy;
580 if (state.autoDestroy) {
584 if (!rState || rState.autoDestroy && rState.endEmitted) {
/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

12