Home
last modified time | relevance | path

Searched refs:emitClose (Results 1 – 25 of 28) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-fs-stream-destroy-emit-error.js22 const stream = fs.createReadStream(__filename, { emitClose: true }); property
29 { emitClose: true }); property
Dtest-file-write-stream4.js17 emitClose: true property
Dtest-fs-stream-construct-compat-error-read.js26 const r = new ReadStream('/doesnotexist', { emitClose: true }) property
Dtest-http2-client-jsstream-destroy.js18 super({ emitClose: true }); property
Dtest-fs-stream-construct-compat-error-write.js39 { flags: 'wx+', emitClose: true }) property
Dtest-stream-finished.js344 emitClose: false, property
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/
Ddestroy.js57 if (self._writableState && !self._writableState.emitClose) return;
58 if (self._readableState && !self._readableState.emitClose) return;
/third_party/node/lib/internal/streams/
Ddestroy.js131 if (w?.emitClose || r?.emitClose) {
Dutils.js281 state.emitClose &&
Dwritable.js182 this.emitClose = !options || options.emitClose !== false;
Dreadable.js143 this.emitClose = !options || options.emitClose !== false;
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Ddestroy.js110 …if ((w !== null && w !== undefined && w.emitClose) || (r !== null && r !== undefined && r.emitClos…
Dwritable.js167 this.emitClose = !options || options.emitClose !== false
Dutils.js236 …(!state && isServerResponse(stream)) || !!(state && state.autoDestroy && state.emitClose && state.…
Dreadable.js126 this.emitClose = !options || options.emitClose !== false
/third_party/node/deps/undici/src/node_modules/busboy/lib/types/
Dmultipart.js225 emitClose: true, property
244 emitClose: true, property
Durlencoded.js11 emitClose: true, property
/third_party/node/lib/internal/bootstrap/switches/
Dis_main_thread.js118 if (!this._writableState.emitClose) {
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/
D_stream_writable.js183 this.emitClose = options.emitClose !== false;
D_stream_readable.js137 this.emitClose = options.emitClose !== false;
/third_party/node/lib/internal/http2/
Dcore.js1085 function emitClose(self, error) { function
1115 emitClose(session, error);
1135 process.nextTick(emitClose, session, error);
/third_party/node/doc/api/
Dstream.md467 description: Add `emitClose` option to specify if `'close'` is emitted on
476 created with the `emitClose` option.
637 event (unless `emitClose` is set to `false`). After this call, the writable
1137 description: Add `emitClose` option to specify if `'close'` is emitted on
1146 created with the `emitClose` option.
1323 event (unless `emitClose` is set to `false`). After this call, the readable
2611 unless `emitClose` is set in false.
3394 `autoDestroy` and `emitClose` options, do not allow the
3473 description: Add `emitClose` option to specify if `'close'` is emitted on
3495 * `emitClose` {boolean} Whether or not the stream should emit `'close'`
[all …]
Dfs.md259 * `emitClose` {boolean} **Default:** `true`
282 destroyed. Set the `emitClose` option to `false` to change this behavior.
326 * `emitClose` {boolean} **Default:** `true`
343 destroyed. Set the `emitClose` option to `false` to change this behavior.
535 * `emitClose` {boolean} **Default:** `true`
2366 description: Change `emitClose` default to `true`.
2375 description: Enable `emitClose` option.
2401 * `emitClose` {boolean} **Default:** `true`
2431 destroyed. Set the `emitClose` option to `false` to change this behavior.
2495 description: Change `emitClose` default to `true`.
[all …]
/third_party/node/lib/
Dnet.js417 options.emitClose = false;
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2672 …/nodejs/node/commit/fc9c6c3227)] - **fs**: do not emit 'close' twice if emitClose enabled (Robert …
4398 …* Allow passing true to emitClose option (Giorgos Ntemiris) [#29212](https://github.com/nodejs/nod…
4439 …b.com/nodejs/node/commit/65de900052)] - **(SEMVER-MINOR)** **doc**: add emitClose option for fs st…
4449 …/commit/8f47ff16d4)] - **(SEMVER-MINOR)** **fs**: allow passing true to emitClose option (Giorgos …
4476 …com/nodejs/node/commit/1f88ca3424)] - **(SEMVER-MINOR)** **test**: add `emitClose: true` tests for…

12