Lines Matching refs:PyObject_CallMethodObjArgs
463 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush()
515 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close()
523 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
547 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach()
564 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable()
571 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable()
578 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable()
601 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno()
608 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty()
682 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell()
712 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seek, in _buffered_raw_seek()
1335 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_truncate, pos, NULL); in _io__Buffered_truncate_impl()
1362 line = PyObject_CallMethodObjArgs((PyObject *)self, in buffered_iternext()
1479 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL); in _bufferedreader_raw_read()
1578 data = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_read, NULL); in _bufferedreader_read_all()
1827 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL); in _bufferedwriter_raw_write()