• Home
  • Raw
  • Download

Lines Matching refs:stringio

27 } stringio;  typedef
54 resize_buffer(stringio *self, size_t size) in resize_buffer()
109 write_str(stringio *self, PyObject *obj) in write_str()
189 stringio_getvalue(stringio *self) in stringio_getvalue()
200 stringio_tell(stringio *self) in stringio_tell()
214 stringio_read(stringio *self, PyObject *args) in stringio_read()
255 _stringio_readline(stringio *self, Py_ssize_t limit) in _stringio_readline()
289 stringio_readline(stringio *self, PyObject *args) in stringio_readline()
313 stringio_iternext(stringio *self) in stringio_iternext()
357 stringio_truncate(stringio *self, PyObject *args) in stringio_truncate()
407 stringio_seek(stringio *self, PyObject *args) in stringio_seek()
461 stringio_write(stringio *self, PyObject *obj) in stringio_write()
487 stringio_close(stringio *self) in stringio_close()
500 stringio_traverse(stringio *self, visitproc visit, void *arg) in stringio_traverse()
507 stringio_clear(stringio *self) in stringio_clear()
514 stringio_dealloc(stringio *self) in stringio_dealloc()
534 stringio *self; in stringio_new()
537 self = (stringio *)type->tp_alloc(type, 0); in stringio_new()
554 stringio_init(stringio *self, PyObject *args, PyObject *kwds) in stringio_init()
646 stringio_seekable(stringio *self, PyObject *args) in stringio_seekable()
654 stringio_readable(stringio *self, PyObject *args) in stringio_readable()
662 stringio_writable(stringio *self, PyObject *args) in stringio_writable()
682 stringio_getstate(stringio *self) in stringio_getstate()
708 stringio_setstate(stringio *self, PyObject *state) in stringio_setstate()
799 stringio_closed(stringio *self, void *context) in stringio_closed()
806 stringio_line_buffering(stringio *self, void *context) in stringio_line_buffering()
814 stringio_newlines(stringio *self, void *context) in stringio_newlines()
858 sizeof(stringio), /*tp_basicsize*/
881 offsetof(stringio, weakreflist), /*tp_weaklistoffset*/
891 offsetof(stringio, dict), /*tp_dictoffset*/