Lines Matching refs:_write
23 // Implement an async ._write(chunk, encoding, cb), and it'll handle all
116 // Should we decode strings into buffers before passing to _write?
145 // may call the _write() callback in the same tick, so that we don't
149 // The callback that's passed to _write(chunk, cb).
155 // The amount that is being written when _write is called.
159 // synchronous _write() completion.
174 // Emit prefinish if the only thing we're waiting for is _write cbs
240 this._write = options.write;
286 function _write(stream, chunk, encoding, cb) {
337 return _write(this, chunk, encoding, cb) === true;
366 // in the queue, and wait our turn. Otherwise, call _write
373 // stream._write resets state.length
392 stream._write(chunk, encoding, state.onwrite);
411 stream._write(chunk, encoding, state.onwrite);
587 Writable.prototype._write = function(chunk, encoding, cb) {
591 throw new ERR_METHOD_NOT_IMPLEMENTED('_write()');
612 const ret = _write(this, chunk, encoding);