Lines Matching refs:textio
708 } textio; typedef
711 textiowrapper_set_decoded_chars(textio *self, PyObject *chars);
717 ascii_encode(textio *self, PyObject *text) in ascii_encode()
725 utf16be_encode(textio *self, PyObject *text) in utf16be_encode()
733 utf16le_encode(textio *self, PyObject *text) in utf16le_encode()
741 utf16_encode(textio *self, PyObject *text) in utf16_encode()
757 utf32be_encode(textio *self, PyObject *text) in utf32be_encode()
765 utf32le_encode(textio *self, PyObject *text) in utf32le_encode()
773 utf32_encode(textio *self, PyObject *text) in utf32_encode()
789 utf8_encode(textio *self, PyObject *text) in utf8_encode()
797 latin1_encode(textio *self, PyObject *text) in latin1_encode()
826 textiowrapper_init(textio *self, PyObject *args, PyObject *kwds) in textiowrapper_init()
1078 _textiowrapper_clear(textio *self) in _textiowrapper_clear()
1096 textiowrapper_dealloc(textio *self) in textiowrapper_dealloc()
1108 textiowrapper_traverse(textio *self, visitproc visit, void *arg) in textiowrapper_traverse()
1126 textiowrapper_clear(textio *self) in textiowrapper_clear()
1135 textiowrapper_closed_get(textio *self, void *context);
1192 textiowrapper_detach(textio *self) in textiowrapper_detach()
1221 _textiowrapper_writeflush(textio *self) in _textiowrapper_writeflush()
1250 textiowrapper_write(textio *self, PyObject *args) in textiowrapper_write()
1350 textiowrapper_set_decoded_chars(textio *self, PyObject *chars) in textiowrapper_set_decoded_chars()
1357 textiowrapper_get_decoded_chars(textio *self, Py_ssize_t n) in textiowrapper_get_decoded_chars()
1392 textiowrapper_read_chunk(textio *self) in textiowrapper_read_chunk()
1495 textiowrapper_read(textio *self, PyObject *args) in textiowrapper_read()
1698 _textiowrapper_readline(textio *self, Py_ssize_t limit) in _textiowrapper_readline()
1857 textiowrapper_readline(textio *self, PyObject *args) in textiowrapper_readline()
1968 _textiowrapper_decoder_setstate(textio *self, cookie_type *cookie) in _textiowrapper_decoder_setstate()
1989 _textiowrapper_encoder_setstate(textio *self, cookie_type *cookie) in _textiowrapper_encoder_setstate()
2009 textiowrapper_seek(textio *self, PyObject *args) in textiowrapper_seek()
2192 textiowrapper_tell(textio *self, PyObject *args) in textiowrapper_tell()
2358 textiowrapper_truncate(textio *self, PyObject *args) in textiowrapper_truncate()
2377 textiowrapper_repr(textio *self) in textiowrapper_repr()
2416 textiowrapper_fileno(textio *self, PyObject *args) in textiowrapper_fileno()
2423 textiowrapper_seekable(textio *self, PyObject *args) in textiowrapper_seekable()
2430 textiowrapper_readable(textio *self, PyObject *args) in textiowrapper_readable()
2437 textiowrapper_writable(textio *self, PyObject *args) in textiowrapper_writable()
2444 textiowrapper_isatty(textio *self, PyObject *args) in textiowrapper_isatty()
2451 textiowrapper_flush(textio *self, PyObject *args) in textiowrapper_flush()
2462 textiowrapper_close(textio *self, PyObject *args) in textiowrapper_close()
2497 textiowrapper_iternext(textio *self) in textiowrapper_iternext()
2535 textiowrapper_name_get(textio *self, void *context) in textiowrapper_name_get()
2542 textiowrapper_closed_get(textio *self, void *context) in textiowrapper_closed_get()
2549 textiowrapper_newlines_get(textio *self, void *context) in textiowrapper_newlines_get()
2569 textiowrapper_errors_get(textio *self, void *context) in textiowrapper_errors_get()
2577 textiowrapper_chunk_size_get(textio *self, void *context) in textiowrapper_chunk_size_get()
2584 textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context) in textiowrapper_chunk_size_set()
2621 {"encoding", T_OBJECT, offsetof(textio, encoding), READONLY},
2622 {"buffer", T_OBJECT, offsetof(textio, buffer), READONLY},
2623 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
2642 sizeof(textio), /*tp_basicsize*/
2665 offsetof(textio, weakreflist), /*tp_weaklistoffset*/
2675 offsetof(textio, dict), /*tp_dictoffset*/