Lines Matching defs:resume
862 debug('pipe resume');
863 src.resume();
886 src.resume();
932 // Update readableListening so that resume() may be a no-op
938 this.resume();
966 // resume within the same tick will have no
984 // resume within the same tick will have no
998 // the upcoming resume will not flow.
1001 // Crude way to check if we should resume.
1003 self.resume();
1014 // pause() and resume() are remnants of the legacy readable stream API
1016 Readable.prototype.resume = function() {
1019 debug('resume');
1022 // resume().
1024 resume(this, state);
1030 function resume(stream, state) {
1038 debug('resume', state.reading);
1044 stream.emit('resume');
1101 if (paused && stream.resume) {
1103 stream.resume();