/third_party/node/test/parallel/ |
D | test-fs-stream-destroy-emit-error.js | 22 const stream = fs.createReadStream(__filename, { emitClose: true }); property 29 { emitClose: true }); property
|
D | test-file-write-stream4.js | 17 emitClose: true property
|
D | test-fs-stream-construct-compat-error-read.js | 26 const r = new ReadStream('/doesnotexist', { emitClose: true }) property
|
D | test-http2-client-jsstream-destroy.js | 18 super({ emitClose: true }); property
|
D | test-fs-stream-construct-compat-error-write.js | 39 { flags: 'wx+', emitClose: true }) property
|
D | test-stream-finished.js | 344 emitClose: false, property
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/internal/streams/ |
D | destroy.js | 57 if (self._writableState && !self._writableState.emitClose) return; 58 if (self._readableState && !self._readableState.emitClose) return;
|
/third_party/node/lib/internal/streams/ |
D | destroy.js | 131 if (w?.emitClose || r?.emitClose) {
|
D | utils.js | 281 state.emitClose &&
|
D | writable.js | 182 this.emitClose = !options || options.emitClose !== false;
|
D | readable.js | 143 this.emitClose = !options || options.emitClose !== false;
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | destroy.js | 110 …if ((w !== null && w !== undefined && w.emitClose) || (r !== null && r !== undefined && r.emitClos…
|
D | writable.js | 167 this.emitClose = !options || options.emitClose !== false
|
D | utils.js | 236 …(!state && isServerResponse(stream)) || !!(state && state.autoDestroy && state.emitClose && state.…
|
D | readable.js | 126 this.emitClose = !options || options.emitClose !== false
|
/third_party/node/deps/undici/src/node_modules/busboy/lib/types/ |
D | multipart.js | 225 emitClose: true, property 244 emitClose: true, property
|
D | urlencoded.js | 11 emitClose: true, property
|
/third_party/node/lib/internal/bootstrap/switches/ |
D | is_main_thread.js | 118 if (!this._writableState.emitClose) {
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 183 this.emitClose = options.emitClose !== false;
|
D | _stream_readable.js | 137 this.emitClose = options.emitClose !== false;
|
/third_party/node/lib/internal/http2/ |
D | core.js | 1085 function emitClose(self, error) { function 1115 emitClose(session, error); 1135 process.nextTick(emitClose, session, error);
|
/third_party/node/doc/api/ |
D | stream.md | 467 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 …]
|
D | fs.md | 259 * `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/ |
D | net.js | 417 options.emitClose = false;
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V12.md | 2672 …/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…
|