Lines Matching defs:_read
173 // The point at which it stops calling _read() to fill the buffer
174 // Note: 0 is a valid value, means "don't call _read preemptively ever"
197 // _read calls, 'data' or 'readable' events should occur. This is needed
233 this._read = options.read;
445 // You can override either this method, or the async _read(n) below.
492 // *below* the call to _read. The reason is that in certain
493 // synthetic stream cases, such as passthrough streams, _read
502 // 2. If that resulting state will trigger a _read, then call _read.
507 // Take note if the _read call is sync or async (ie, if the read call
539 this._read(state.highWaterMark);
545 // If _read pushed data synchronously, then `reading` will be false,
653 // in turn another _read(n) call, in which case reading = true if
683 // case where the stream has called the implementation defined _read()
686 // read()s. The execution ends in this method again after the _read() ends
705 Readable.prototype._read = function(n) {
706 throw new ERR_METHOD_NOT_IMPLEMENTED('_read()');
1100 this._read = () => {