Home | History | Annotate | Download | only in Objects

Lines Matching refs:bytesread

1074     size_t bytesread, buffersize, chunksize;
1100 bytesread = 0;
1105 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1106 buffersize - bytesread, f->f_fp, (PyObject *)f);
1125 * chunksize != 0, but bytesread < buffersize. */
1126 if (bytesread > 0 && BLOCKED_ERRNO(errno))
1132 bytesread += chunksize;
1133 if (bytesread < buffersize && !interrupted) {
1146 if (bytesread != buffersize && _PyString_Resize(&v, bytesread))