Home
last modified time | relevance | path

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

/third_party/node/lib/internal/fs/
Dstreams.js71 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) {
Dsync_write_stream.js17 this.autoClose = options.autoClose === undefined ? true : options.autoClose;
33 if (this.autoClose)
/third_party/node/test/parallel/
Dtest-internal-fs-syncwritestream.js21 assert.strictEqual(stream.autoClose, true);
26 const stream = new SyncWriteStream(1, { autoClose: false }); property
30 assert.strictEqual(stream.autoClose, false);
Dtest-fs-write-stream-autoclose-option.js11 let stream = fs.createWriteStream(file, { flags: 'w+', autoClose: false }); property
49 const stream = fs.createWriteStream(file, { autoClose: true }); property
Dtest-fs-read-stream-inherit.js153 fs.createReadStream(rangeFile, Object.create({ autoClose: false })); property
154 assert.strictEqual(file.autoClose, false);
184 const options = Object.create({ fd: 13337, autoClose: false }); property
Dtest-fs-read-stream-autoClose.js11 const file = fs.createWriteStream(writeFile, { autoClose: true }); property
Dtest-fs-ready-event-stream.js16 const writeStream = fs.createWriteStream(writeFile, { autoClose: true }); property
Dtest-fs-write-stream-double-close.js41 autoClose: false property
Dtest-fs-read-stream.js226 let file = fs.createReadStream(rangeFile, { autoClose: false }); property
257 const file = fs.createReadStream(null, { fd: 13337, autoClose: false }); property
Dtest-stream-finished.js327 const rs = fs.createReadStream(__filename, { autoClose: false }); property
/third_party/node/deps/npm/node_modules/fs-minipass/
Dindex.js56 this[_autoClose] = typeof opt.autoClose === 'boolean' ?
57 opt.autoClose : true
216 this[_autoClose] = typeof opt.autoClose === 'boolean' ?
217 opt.autoClose : true
DREADME.md51 - `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/
Dis_main_thread.js53 stream = new SyncWriteStream(fd, { autoClose: false }); property
160 stdin = new fs.ReadStream(null, { fd: fd, autoClose: false }); property
/third_party/flutter/skia/src/core/
DSkPath.cpp494 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/
DSkPath.cpp1735 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/
Dutils.js132 fs.createReadStream(file.path, { autoClose: true }); property
/third_party/node/deps/npm/node_modules/graceful-fs/
Dgraceful-fs.js279 if (that.autoClose)
/third_party/flutter/skia/include/core/
DSkPath.h1497 Verb autoClose(SkPoint pts[2]);
/third_party/flutter/skia/modules/skshaper/src/
DSkShaper_harfbuzz.cpp868 … 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/
DSkPath.h1522 Verb autoClose(SkPoint pts[2]);
/third_party/node/deps/npm/node_modules/tar/lib/
Dunpack.js370 autoClose: false property
/third_party/node/doc/api/
Dfs.md1828 * `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/
DCHANGELOG_V5.md924 * **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…
DCHANGELOG_ARCHIVE.md807 * fs: add autoClose=true option to fs.createReadStream (Farid Neshat)
DCHANGELOG_V13.md233 …://github.com/nodejs/node/commit/7eed9d6bcc)] - **fs**: fix WriteStream autoClose order (Robert Na…