Lines Matching refs:path
71 stream[kFs].open(stream.path, stream.flags, stream.mode, (er, fd) => {
87 open: (path, flags, mode, cb) => {
150 function ReadStream(path, options) {
152 return new ReadStream(path, options);
169 this.path = toPathIfFileURL(path);
173 validatePath(this.path);
269 // Slow path. Shrink to fit.
309 function WriteStream(path, options) {
311 return new WriteStream(path, options);
324 this.path = toPathIfFileURL(path);
328 validatePath(this.path);