• Home
  • Raw
  • Download

Lines Matching refs:PyObject_CallMethodObjArgs

478     return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL);  in buffered_simple_flush()
530 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close()
538 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
562 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach()
579 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable()
586 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable()
593 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable()
616 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno()
623 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty()
697 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell()
727 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seek, in _buffered_raw_seek()
1355 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_truncate, pos, NULL); in _io__Buffered_truncate_impl()
1382 line = PyObject_CallMethodObjArgs((PyObject *)self, in buffered_iternext()
1489 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL); in _bufferedreader_raw_read()
1554 tmp = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readall, NULL); in _bufferedreader_read_all()
1593 data = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_read, NULL); in _bufferedreader_read_all()
1844 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL); in _bufferedwriter_raw_write()