Lines Matching refs:Writable
37 module.exports = Writable;
38 Writable.WritableState = WritableState;
62 ObjectSetPrototypeOf(Writable.prototype, Stream.prototype);
63 ObjectSetPrototypeOf(Writable, Stream);
202 ObjectDefineProperty(Writable, SymbolHasInstance, {
206 if (this !== Writable)
218 function Writable(options) { class
231 if (!isDuplex && !realHasInstance.call(Writable, this))
232 return new Writable(options);
254 Writable.prototype.pipe = function() {
258 Writable.prototype.write = function(chunk, encoding, cb) {
306 Writable.prototype.cork = function() {
310 Writable.prototype.uncork = function() {
321 Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {
544 Writable.prototype._write = function(chunk, encoding, cb) {
552 Writable.prototype._writev = null;
554 Writable.prototype.end = function(chunk, encoding, cb) {
695 ObjectDefineProperties(Writable.prototype, {
779 Writable.prototype.destroy = function(err, cb) {
789 Writable.prototype._undestroy = destroyImpl.undestroy;
790 Writable.prototype._destroy = function(err, cb) {
794 Writable.prototype[EE.captureRejectionSymbol] = function(err) {