Lines Matching refs:textio
697 } textio; typedef
700 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
706 ascii_encode(textio *self, PyObject *text) in ascii_encode()
712 utf16be_encode(textio *self, PyObject *text) in utf16be_encode()
719 utf16le_encode(textio *self, PyObject *text) in utf16le_encode()
726 utf16_encode(textio *self, PyObject *text) in utf16_encode()
741 utf32be_encode(textio *self, PyObject *text) in utf32be_encode()
748 utf32le_encode(textio *self, PyObject *text) in utf32le_encode()
755 utf32_encode(textio *self, PyObject *text) in utf32_encode()
770 utf8_encode(textio *self, PyObject *text) in utf8_encode()
776 latin1_encode(textio *self, PyObject *text) in latin1_encode()
825 set_newline(textio *self, const char *newline) in set_newline()
861 _textiowrapper_set_decoder(textio *self, PyObject *codec_info, in _textiowrapper_set_decoder()
916 _textiowrapper_set_encoder(textio *self, PyObject *codec_info, in _textiowrapper_set_encoder()
960 _textiowrapper_fix_encoder_state(textio *self) in _textiowrapper_fix_encoder_state()
1073 _io_TextIOWrapper___init___impl(textio *self, PyObject *buffer, in _io_TextIOWrapper___init___impl()
1294 textiowrapper_change_encoding(textio *self, PyObject *encoding, in textiowrapper_change_encoding()
1357 _io_TextIOWrapper_reconfigure_impl(textio *self, PyObject *encoding, in _io_TextIOWrapper_reconfigure_impl()
1413 textiowrapper_clear(textio *self) in textiowrapper_clear()
1432 textiowrapper_dealloc(textio *self) in textiowrapper_dealloc()
1446 textiowrapper_traverse(textio *self, visitproc visit, void *arg) in textiowrapper_traverse()
1464 textiowrapper_closed_get(textio *self, void *context);
1525 _io_TextIOWrapper_detach_impl(textio *self) in _io_TextIOWrapper_detach_impl()
1543 _textiowrapper_writeflush(textio *self) in _textiowrapper_writeflush()
1618 _io_TextIOWrapper_write_impl(textio *self, PyObject *text) in _io_TextIOWrapper_write_impl()
1745 textiowrapper_set_decoded_chars(textio *self, PyObject *chars) in textiowrapper_set_decoded_chars()
1752 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n) in textiowrapper_get_decoded_chars()
1788 textiowrapper_read_chunk(textio *self, Py_ssize_t size_hint) in textiowrapper_read_chunk()
1921 _io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n) in _io_TextIOWrapper_read_impl()
2130 _textiowrapper_readline(textio *self, Py_ssize_t limit) in _textiowrapper_readline()
2299 _io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size) in _io_TextIOWrapper_readline_impl()
2388 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie) in _textiowrapper_decoder_setstate()
2409 _textiowrapper_encoder_reset(textio *self, int start_of_stream) in _textiowrapper_encoder_reset()
2428 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie) in _textiowrapper_encoder_setstate()
2443 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence) in _io_TextIOWrapper_seek_impl()
2635 _io_TextIOWrapper_tell_impl(textio *self) in _io_TextIOWrapper_tell_impl()
2868 _io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos) in _io_TextIOWrapper_truncate_impl()
2884 textiowrapper_repr(textio *self) in textiowrapper_repr()
2956 _io_TextIOWrapper_fileno_impl(textio *self) in _io_TextIOWrapper_fileno_impl()
2968 _io_TextIOWrapper_seekable_impl(textio *self) in _io_TextIOWrapper_seekable_impl()
2980 _io_TextIOWrapper_readable_impl(textio *self) in _io_TextIOWrapper_readable_impl()
2992 _io_TextIOWrapper_writable_impl(textio *self) in _io_TextIOWrapper_writable_impl()
3004 _io_TextIOWrapper_isatty_impl(textio *self) in _io_TextIOWrapper_isatty_impl()
3016 _io_TextIOWrapper_flush_impl(textio *self) in _io_TextIOWrapper_flush_impl()
3032 _io_TextIOWrapper_close_impl(textio *self) in _io_TextIOWrapper_close_impl()
3077 textiowrapper_iternext(textio *self) in textiowrapper_iternext()
3115 textiowrapper_name_get(textio *self, void *context) in textiowrapper_name_get()
3122 textiowrapper_closed_get(textio *self, void *context) in textiowrapper_closed_get()
3129 textiowrapper_newlines_get(textio *self, void *context) in textiowrapper_newlines_get()
3142 textiowrapper_errors_get(textio *self, void *context) in textiowrapper_errors_get()
3150 textiowrapper_chunk_size_get(textio *self, void *context) in textiowrapper_chunk_size_get()
3157 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context) in textiowrapper_chunk_size_set()
3256 {"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
3257 {"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
3258 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
3259 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
3260 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
3279 sizeof(textio), /*tp_basicsize*/
3302 offsetof(textio, weakreflist), /*tp_weaklistoffset*/
3312 offsetof(textio, dict), /*tp_dictoffset*/