Lines Matching refs:fileio

54 class _io.FileIO "fileio *" "&PyFileIO_Type"
71 } fileio;
78 static PyObject* portable_lseek(fileio *self, PyObject *posobj, int whence, bool suppress_pipe_error);
83 return ((fileio *)self)->fd < 0;
90 fileio_dealloc_warn(fileio *self, PyObject *source)
107 internal_close(fileio *self)
141 _io_FileIO_close_impl(fileio *self)
173 fileio *self;
177 self = (fileio *) type->tp_alloc(type, 0);
220 _io_FileIO___init___impl(fileio *self, PyObject *nameobj, const char *mode,
513 fileio_traverse(fileio *self, visitproc visit, void *arg)
520 fileio_clear(fileio *self)
527 fileio_dealloc(fileio *self)
563 _io_FileIO_fileno_impl(fileio *self)
578 _io_FileIO_readable_impl(fileio *self)
593 _io_FileIO_writable_impl(fileio *self)
608 _io_FileIO_seekable_impl(fileio *self)
636 _io_FileIO_readinto_impl(fileio *self, Py_buffer *buffer)
663 new_buffersize(fileio *self, size_t currentsize)
691 _io_FileIO_readall_impl(fileio *self)
793 _io_FileIO_read_impl(fileio *self, Py_ssize_t size)
852 _io_FileIO_write_impl(fileio *self, Py_buffer *b)
882 portable_lseek(fileio *self, PyObject *posobj, int whence, bool suppress_pipe_error)
962 _io_FileIO_seek_impl(fileio *self, PyObject *pos, int whence)
980 _io_FileIO_tell_impl(fileio *self)
1002 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj)
1057 mode_string(fileio *self)
1082 fileio_repr(fileio *self)
1123 _io_FileIO_isatty_impl(fileio *self)
1138 #include "clinic/fileio.c.h"
1161 get_closed(fileio *self, void *closure)
1167 get_closefd(fileio *self, void *closure)
1173 get_mode(fileio *self, void *closure)
1187 {"_blksize", T_UINT, offsetof(fileio, blksize), 0},
1188 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
1195 sizeof(fileio),
1218 offsetof(fileio, weakreflist), /* tp_weaklistoffset */
1228 offsetof(fileio, dict), /* tp_dictoffset */