Searched refs:autoClose (Results 1 - 12 of 12) sorted by relevance
/third_party/node/lib/internal/fs/ |
H A D | sync_write_stream.js | 19 this.autoClose = options.autoClose === undefined ? true : options.autoClose; 39 if (this.autoClose)
|
H A D | streams.js | 178 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 D | test-fs-stream-construct-compat-old-node.js | 23 if (this.autoClose) { 67 if (this.autoClose) {
|
H A D | test-fs-write-stream-autoclose-option.js | 11 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 D | test-fs-read-stream-inherit.js | 153 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 D | test-fs-stream-construct-compat-graceful-fs.js | 24 if (that.autoClose)
|
H A D | test-fs-read-stream.js | 226 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 D | test-stream-finished.js | 411 const rs = fs.createReadStream(__filename, { autoClose: false });
|
/third_party/node/lib/internal/bootstrap/switches/ |
H A D | is_main_thread.js | 60 stream = new SyncWriteStream(fd, { autoClose: false }); 204 stdin = new fs.ReadStream(null, { fd: fd, autoClose: false });
|
/third_party/skia/src/core/ |
H A 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() 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 D | graceful-fs.js | 308 if (that.autoClose)
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 1522 Verb autoClose(SkPoint pts[2]);
|
Completed in 11 milliseconds