Lines Matching defs:open
20 ReadStream.prototype.open = common.mustCall(function ReadStream$open() {
22 fs.open(that.path, that.flags, that.mode, (err, fd) => {
30 that.emit('open', fd);
37 .on('open', common.mustCall((fd) => {
52 WriteStream.prototype.open = common.mustCall(function WriteStream$open() {
54 fs.open(that.path, that.flags, that.mode, function(err, fd) {
60 that.emit('open', fd);
66 .on('open', common.mustCall((fd) => {