/third_party/node/lib/internal/fs/ |
D | streams.js | 71 this.autoClose = options.autoClose === undefined ? true : options.autoClose; 101 if (this.autoClose) { 123 if (stream.autoClose) { 170 if (this.autoClose) { 240 options.autoDestroy = options.autoClose === undefined ? 241 true : (options.autoClose || false); 287 this.autoClose = options.autoDestroy; 332 if (stream.autoClose) { 406 if (this.autoClose) { 432 if (!this.autoClose) {
|
D | sync_write_stream.js | 17 this.autoClose = options.autoClose === undefined ? true : options.autoClose; 33 if (this.autoClose)
|
/third_party/node/test/parallel/ |
D | test-internal-fs-syncwritestream.js | 21 assert.strictEqual(stream.autoClose, true); 26 const stream = new SyncWriteStream(1, { autoClose: false }); property 30 assert.strictEqual(stream.autoClose, false);
|
D | test-fs-write-stream-autoclose-option.js | 11 let stream = fs.createWriteStream(file, { flags: 'w+', autoClose: false }); property 49 const stream = fs.createWriteStream(file, { autoClose: true }); property
|
D | test-fs-read-stream-inherit.js | 153 fs.createReadStream(rangeFile, Object.create({ autoClose: false })); property 154 assert.strictEqual(file.autoClose, false); 184 const options = Object.create({ fd: 13337, autoClose: false }); property
|
D | test-fs-read-stream-autoClose.js | 11 const file = fs.createWriteStream(writeFile, { autoClose: true }); property
|
D | test-fs-ready-event-stream.js | 16 const writeStream = fs.createWriteStream(writeFile, { autoClose: true }); property
|
D | test-fs-write-stream-double-close.js | 41 autoClose: false property
|
D | test-fs-read-stream.js | 226 let file = fs.createReadStream(rangeFile, { autoClose: false }); property 257 const file = fs.createReadStream(null, { fd: 13337, autoClose: false }); property
|
D | test-stream-finished.js | 327 const rs = fs.createReadStream(__filename, { autoClose: false }); property
|
/third_party/node/deps/npm/node_modules/fs-minipass/ |
D | index.js | 56 this[_autoClose] = typeof opt.autoClose === 'boolean' ? 57 opt.autoClose : true 216 this[_autoClose] = typeof opt.autoClose === 'boolean' ? 217 opt.autoClose : true
|
D | README.md | 51 - `autoClose` Set to `false` to prevent the file descriptor from being 66 - `autoClose` Set to `false` to prevent the file descriptor from being
|
/third_party/node/lib/internal/bootstrap/switches/ |
D | is_main_thread.js | 53 stream = new SyncWriteStream(fd, { autoClose: false }); property 160 stdin = new fs.ReadStream(null, { fd: fd, autoClose: false }); property
|
/third_party/flutter/skia/src/core/ |
D | SkPath.cpp | 494 bool autoClose = false; in isRectContour() local 497 while (*currVerb < verbCnt && (!allowPartial || !autoClose)) { in isRectContour() 502 autoClose = true; in isRectContour() 530 if (autoClose && nextDirection == directions[0]) { in isRectContour() 533 closedOrMoved = autoClose; in isRectContour() 569 if (allowPartial && !autoClose && directions[0] >= 0) { in isRectContour() 609 *isClosed = autoClose; in isRectContour() 1990 SkPath::Verb SkPath::Iter::autoClose(SkPoint pts[2]) { in autoClose() function in SkPath::Iter 2030 if (kLine_Verb == this->autoClose(ptsParam)) { in next() 2048 verb = this->autoClose(pts); in next() [all …]
|
/third_party/skia/src/core/ |
D | SkPath.cpp | 1735 SkPath::Verb SkPath::Iter::autoClose(SkPoint pts[2]) { in autoClose() function in SkPath::Iter 1763 if (kLine_Verb == this->autoClose(ptsParam)) { in next() 1780 verb = this->autoClose(pts); in next() 1818 verb = this->autoClose(pts); in next() 3470 bool autoClose = false; in IsRectContour() local 3473 while (*currVerb < verbCnt && (!allowPartial || !autoClose)) { in IsRectContour() 3478 autoClose = true; in IsRectContour() 3507 if (autoClose && nextDirection == directions[0]) { in IsRectContour() 3510 closedOrMoved = autoClose; in IsRectContour() 3546 if (allowPartial && !autoClose && directions[0] >= 0) { in IsRectContour() [all …]
|
/third_party/typescript/scripts/build/ |
D | utils.js | 132 fs.createReadStream(file.path, { autoClose: true }); property
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
D | graceful-fs.js | 279 if (that.autoClose)
|
/third_party/flutter/skia/include/core/ |
D | SkPath.h | 1497 Verb autoClose(SkPoint pts[2]);
|
/third_party/flutter/skia/modules/skshaper/src/ |
D | SkShaper_harfbuzz.cpp | 868 … std::unique_ptr<UText, SkFunctionWrapper<UText*, UText, utext_close>> autoClose(&utf8UText); in wrap() local 971 std::unique_ptr<UText, SkFunctionWrapper<UText*, UText, utext_close>> autoClose(&utf8UText); in wrap() local
|
/third_party/skia/include/core/ |
D | SkPath.h | 1522 Verb autoClose(SkPoint pts[2]);
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | unpack.js | 370 autoClose: false property
|
/third_party/node/doc/api/ |
D | fs.md | 1828 * `autoClose` {boolean} **Default:** `true` 1882 If `autoClose` is false, then the file descriptor won't be closed, even if 1884 sure there's no file descriptor leak. If `autoClose` is set to true (default 1926 description: The `autoClose` option is supported now. 1939 * `autoClose` {boolean} **Default:** `true` 1951 If `autoClose` is set to true (default behavior) on `'error'` or `'finish'` 1952 the file descriptor will be closed automatically. If `autoClose` is false,
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V5.md | 924 * **fs**: add autoClose option to fs.createWriteStream (Saquib) [#3679](https://github.com/nodejs/n… 967 …ub.com/nodejs/node/commit/6039a7c1b5)] - **(SEMVER-MINOR)** **fs**: add autoClose option to fs.cre…
|
D | CHANGELOG_ARCHIVE.md | 807 * fs: add autoClose=true option to fs.createReadStream (Farid Neshat)
|
D | CHANGELOG_V13.md | 233 …://github.com/nodejs/node/commit/7eed9d6bcc)] - **fs**: fix WriteStream autoClose order (Robert Na…
|