Lines Matching refs:WriteStream
309 function WriteStream(path, options) {
310 if (!(this instanceof WriteStream))
311 return new WriteStream(path, options);
377 ObjectSetPrototypeOf(WriteStream.prototype, Writable.prototype);
378 ObjectSetPrototypeOf(WriteStream, Writable);
380 ObjectDefineProperty(WriteStream.prototype, 'autoClose', {
392 }, 'WriteStream.prototype.open() is deprecated', 'DEP0135');
393 WriteStream.prototype.open = openWriteFs;
395 WriteStream.prototype._construct = _construct;
455 WriteStream.prototype._write = function(data, encoding, cb) {
472 WriteStream.prototype._writev = function(data, cb) {
500 WriteStream.prototype._destroy = function(err, cb) {
514 WriteStream.prototype.close = function(cb) {
535 WriteStream.prototype.destroySoon = WriteStream.prototype.end;
537 ObjectDefineProperty(WriteStream.prototype, 'pending', {
545 WriteStream,