Lines Matching refs:path
11 function ReadStream (path, options) {
12 if (!(this instanceof ReadStream)) return new ReadStream(path, options);
18 this.path = path;
62 fs.open(this.path, this.flags, this.mode, function (err, fd) {
75 function WriteStream (path, options) {
76 if (!(this instanceof WriteStream)) return new WriteStream(path, options);
80 this.path = path;
114 this._queue.push([this._open, this.path, this.flags, this.mode, undefined]);