• Home
  • Raw
  • Download

Lines Matching refs:bytesio

20 } bytesio;  typedef
24 bytesio *source;
55 scan_eol(bytesio *self, Py_ssize_t len) in scan_eol()
89 unshare_buffer(bytesio *self, size_t size) in unshare_buffer()
108 resize_buffer(bytesio *self, size_t size) in resize_buffer()
161 write_bytes(bytesio *self, const char *bytes, Py_ssize_t len) in write_bytes()
205 bytesio_get_closed(bytesio *self, void *Py_UNUSED(ignored)) in bytesio_get_closed()
222 _io_BytesIO_readable_impl(bytesio *self) in _io_BytesIO_readable_impl()
236 _io_BytesIO_writable_impl(bytesio *self) in _io_BytesIO_writable_impl()
250 _io_BytesIO_seekable_impl(bytesio *self) in _io_BytesIO_seekable_impl()
264 _io_BytesIO_flush_impl(bytesio *self) in _io_BytesIO_flush_impl()
278 _io_BytesIO_getbuffer_impl(bytesio *self) in _io_BytesIO_getbuffer_impl()
304 _io_BytesIO_getvalue_impl(bytesio *self) in _io_BytesIO_getvalue_impl()
335 _io_BytesIO_isatty_impl(bytesio *self) in _io_BytesIO_isatty_impl()
349 _io_BytesIO_tell_impl(bytesio *self) in _io_BytesIO_tell_impl()
357 read_bytes(bytesio *self, Py_ssize_t size) in read_bytes()
388 _io_BytesIO_read_impl(bytesio *self, Py_ssize_t size) in _io_BytesIO_read_impl()
419 _io_BytesIO_read1_impl(bytesio *self, Py_ssize_t size) in _io_BytesIO_read1_impl()
438 _io_BytesIO_readline_impl(bytesio *self, Py_ssize_t size) in _io_BytesIO_readline_impl()
463 _io_BytesIO_readlines_impl(bytesio *self, PyObject *arg) in _io_BytesIO_readlines_impl()
527 _io_BytesIO_readinto_impl(bytesio *self, Py_buffer *buffer) in _io_BytesIO_readinto_impl()
563 _io_BytesIO_truncate_impl(bytesio *self, Py_ssize_t size) in _io_BytesIO_truncate_impl()
585 bytesio_iternext(bytesio *self) in bytesio_iternext()
615 _io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence) in _io_BytesIO_seek_impl()
669 _io_BytesIO_write(bytesio *self, PyObject *b) in _io_BytesIO_write()
701 _io_BytesIO_writelines(bytesio *self, PyObject *lines) in _io_BytesIO_writelines()
738 _io_BytesIO_close_impl(bytesio *self) in _io_BytesIO_close_impl()
762 bytesio_getstate(bytesio *self, PyObject *Py_UNUSED(ignored)) in bytesio_getstate()
788 bytesio_setstate(bytesio *self, PyObject *state) in bytesio_setstate()
864 bytesio_dealloc(bytesio *self) in bytesio_dealloc()
882 bytesio *self; in bytesio_new()
885 self = (bytesio *)type->tp_alloc(type, 0); in bytesio_new()
909 _io_BytesIO___init___impl(bytesio *self, PyObject *initvalue) in _io_BytesIO___init___impl()
941 bytesio_sizeof(bytesio *self, void *unused) in bytesio_sizeof()
957 bytesio_traverse(bytesio *self, visitproc visit, void *arg) in bytesio_traverse()
964 bytesio_clear(bytesio *self) in bytesio_clear()
1007 sizeof(bytesio), /*tp_basicsize*/
1030 offsetof(bytesio, weakreflist), /*tp_weaklistoffset*/
1040 offsetof(bytesio, dict), /*tp_dictoffset*/
1056 bytesio *b = (bytesio *) obj->source; in bytesiobuf_getbuffer()
1079 bytesio *b = (bytesio *) obj->source; in bytesiobuf_releasebuffer()