Lines Matching refs:bytesRead
97 (r) => cb(null, r.bytesRead, r.buffer),
190 this.bytesRead = 0;
239 MathMin(this.end - this.bytesRead + 1, n);
250 .read(this.fd, buf, 0, n, this.pos, (er, bytesRead, buf) => {
261 } else if (bytesRead > 0) {
263 this.pos += bytesRead;
266 this.bytesRead += bytesRead;
268 if (bytesRead !== buf.length) {
272 const dst = Buffer.allocUnsafeSlow(bytesRead);
273 buf.copy(dst, 0, 0, bytesRead);