Home
last modified time | relevance | path

Searched refs:autoClose (Results 1 - 12 of 12) sorted by relevance

/third_party/node/lib/internal/fs/
H A Dsync_write_stream.js19 this.autoClose = options.autoClose === undefined ? true : options.autoClose;
39 if (this.autoClose)
H A Dstreams.js178 options.autoDestroy = options.autoClose === undefined ?
179 true : options.autoClose;
219 ObjectDefineProperty(ReadStream.prototype, 'autoClose', {
333 options.autoDestroy = options.autoClose === undefined ?
334 true : options.autoClose;
380 ObjectDefineProperty(WriteStream.prototype, 'autoClose', {
525 if (!this.autoClose) {
/third_party/node/test/parallel/
H A Dtest-fs-stream-construct-compat-old-node.js23 if (this.autoClose) {
67 if (this.autoClose) {
H A Dtest-fs-write-stream-autoclose-option.js11 let stream = fs.createWriteStream(file, { flags: 'w+', autoClose: false });
48 // This is to test success scenario where autoClose is true
49 const stream = fs.createWriteStream(file, { autoClose: true });
H A Dtest-fs-read-stream-inherit.js153 fs.createReadStream(rangeFile, Object.create({ autoClose: false }));
154 assert.strictEqual(file.autoClose, false);
182 // Just to make sure autoClose won't close the stream because of error.
184 const options = Object.create({ fd: 13337, autoClose: false });
H A Dtest-fs-stream-construct-compat-graceful-fs.js24 if (that.autoClose)
H A Dtest-fs-read-stream.js226 let file = fs.createReadStream(rangeFile, common.mustNotMutateObjectDeep({ autoClose: false }));
256 // Just to make sure autoClose won't close the stream because of error.
257 const file = fs.createReadStream(null, common.mustNotMutateObjectDeep({ fd: 13337, autoClose: false }));
H A Dtest-stream-finished.js411 const rs = fs.createReadStream(__filename, { autoClose: false });
/third_party/node/lib/internal/bootstrap/switches/
H A Dis_main_thread.js60 stream = new SyncWriteStream(fd, { autoClose: false });
204 stdin = new fs.ReadStream(null, { fd: fd, autoClose: false });
/third_party/skia/src/core/
H A 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()
3516 bool autoClose = false; in IsRectContour() local
3519 while (*currVerb < verbCnt && (!allowPartial || !autoClose)) { in IsRectContour()
3524 autoClose = true; in IsRectContour()
3553 if (autoClose && nextDirection == directions[0]) { in IsRectContour()
3556 closedOrMoved = autoClose; in IsRectContour()
3592 if (allowPartial && !autoClose in IsRectContour()
[all...]
/third_party/node/deps/npm/node_modules/graceful-fs/
H A Dgraceful-fs.js308 if (that.autoClose)
/third_party/skia/include/core/
H A DSkPath.h1522 Verb autoClose(SkPoint pts[2]);

Completed in 11 milliseconds