Searched refs:emitClose (Results 1 – 19 of 19) sorted by relevance
/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-http2-client-jsstream-destroy.js | 18 super({ emitClose: true }); property
|
D | test-stream-finished.js | 260 emitClose: false, property
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | destroy.js | 62 if (self._writableState && !self._writableState.emitClose) return; 63 if (self._readableState && !self._readableState.emitClose) return;
|
/third_party/node/lib/internal/streams/ |
D | destroy.js | 86 if ((w && w.emitClose) || (r && r.emitClose)) {
|
D | end-of-stream.js | 78 state.emitClose &&
|
D | writable.js | 166 this.emitClose = !options || options.emitClose !== false;
|
D | readable.js | 123 this.emitClose = !options || options.emitClose !== false;
|
/third_party/node/lib/internal/bootstrap/switches/ |
D | is_main_thread.js | 109 if (!this._writableState.emitClose) {
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 178 …this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'finish' (and p…
|
D | _stream_readable.js | 146 …this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'end' (and pote…
|
/third_party/node/doc/api/ |
D | stream.md | 233 description: Add `emitClose` option to specify if `'close'` is emitted on 242 created with the `emitClose` option. 396 event (unless `emitClose` is set to `false`). After this call, the writable 851 description: Add `emitClose` option to specify if `'close'` is emitted on 860 created with the `emitClose` option. 1030 event (unless `emitClose` is set to `false`). After this call, the readable 1613 unless `emitClose` is set in false. 1874 `autoDestroy` and `emitClose` options, do not allow the 1942 description: Add `emitClose` option to specify if `'close'` is emitted on 1964 * `emitClose` {boolean} Whether or not the stream should emit `'close'` [all …]
|
D | fs.md | 1794 description: Change `emitClose` default to `true`. 1803 description: Enable `emitClose` option. 1829 * `emitClose` {boolean} **Default:** `true` 1858 destroyed, like most `Readable` streams. Set the `emitClose` option to 1907 description: Change `emitClose` default to `true`. 1916 description: Enable `emitClose` option. 1940 * `emitClose` {boolean} **Default:** `true` 1958 destroyed, like most `Writable` streams. Set the `emitClose` option to
|
/third_party/node/lib/internal/http2/ |
D | core.js | 1049 function emitClose(self, error) { function 1090 emitClose(session, error); 1093 process.nextTick(emitClose, session, error);
|
/third_party/node/lib/ |
D | net.js | 310 options.emitClose = false;
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V12.md | 264 …/nodejs/node/commit/fc9c6c3227)] - **fs**: do not emit 'close' twice if emitClose enabled (Robert … 1978 …* Allow passing true to emitClose option (Giorgos Ntemiris) [#29212](https://github.com/nodejs/nod… 2019 …b.com/nodejs/node/commit/65de900052)] - **(SEMVER-MINOR)** **doc**: add emitClose option for fs st… 2029 …/commit/8f47ff16d4)] - **(SEMVER-MINOR)** **fs**: allow passing true to emitClose option (Giorgos … 2056 …com/nodejs/node/commit/1f88ca3424)] - **(SEMVER-MINOR)** **test**: add `emitClose: true` tests for…
|
D | CHANGELOG_V13.md | 566 …/nodejs/node/commit/2c2b3ba39c)] - **fs**: do not emit 'close' twice if emitClose enabled (Robert …
|
D | CHANGELOG_V14.md | 721 * [[`298a16a2e7`](https://github.com/nodejs/node/commit/298a16a2e7)] - **doc**: update emitClose de…
|