Lines Matching refs:dec_buffer
1840 PyObject *dec_buffer = NULL; in textiowrapper_read_chunk() local
1877 "OO;illegal decoder state", &dec_buffer, &dec_flags)) in textiowrapper_read_chunk()
1883 if (!PyBytes_Check(dec_buffer)) { in textiowrapper_read_chunk()
1887 Py_TYPE(dec_buffer)->tp_name); in textiowrapper_read_chunk()
1891 Py_INCREF(dec_buffer); in textiowrapper_read_chunk()
1941 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk()
1943 dec_buffer = NULL; /* Reference lost to PyBytes_Concat */ in textiowrapper_read_chunk()
1959 Py_XDECREF(dec_buffer); in textiowrapper_read_chunk()
2788 PyObject *dec_buffer; \ in _io_TextIOWrapper_tell_impl()
2800 &dec_buffer, &dec_flags)) \ in _io_TextIOWrapper_tell_impl()
2805 if (!PyBytes_Check(dec_buffer)) { \ in _io_TextIOWrapper_tell_impl()
2809 Py_TYPE(dec_buffer)->tp_name); \ in _io_TextIOWrapper_tell_impl()
2813 dec_buffer_len = PyBytes_GET_SIZE(dec_buffer); \ in _io_TextIOWrapper_tell_impl()