Lines Matching refs:PyObject_CallMethodObjArgs

430     return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL);  in buffered_simple_flush()
474 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close()
482 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
501 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach()
518 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable()
525 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable()
532 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable()
555 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno()
562 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty()
625 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell()
655 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seek, in _buffered_raw_seek()
1159 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_truncate, pos, NULL); in buffered_truncate()
1186 line = PyObject_CallMethodObjArgs((PyObject *)self, in buffered_iternext()
1300 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL); in _bufferedreader_raw_read()
1382 data = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_read, NULL); in _bufferedreader_read_all()
1725 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL); in _bufferedwriter_raw_write()