Lines Matching refs:WriteStream
230 function WriteStream(path, options) { class
231 if (!(this instanceof WriteStream))
232 return new WriteStream(path, options);
305 ObjectSetPrototypeOf(WriteStream.prototype, Writable.prototype);
306 ObjectSetPrototypeOf(WriteStream, Writable);
308 WriteStream.prototype._final = function(callback) {
321 WriteStream.prototype.open = openWriteFs;
346 WriteStream.prototype._write = function(data, encoding, cb) {
376 WriteStream.prototype._writev = function(data, cb) {
420 WriteStream.prototype._destroy = ReadStream.prototype._destroy;
421 WriteStream.prototype.close = function(cb) {
442 WriteStream.prototype.destroySoon = WriteStream.prototype.end;
444 ObjectDefineProperty(WriteStream.prototype, 'pending', {
451 WriteStream field