Home | History | Annotate | Download | only in Modules

Lines Matching defs:nbytes

4151     int avail, nbytes;
4162 nbytes = BIO_read(self->bio, PyBytes_AS_STRING(result), len);
4164 if ((nbytes < len) && (_PyBytes_Resize(&result, len) < 0)) {
4186 int nbytes;
4200 nbytes = BIO_write(self->bio, b->buf, b->len);
4201 if (nbytes < 0) {
4206 return PyLong_FromLong(nbytes);