Lines Matching refs:input_chunk
1792 PyObject *input_chunk = NULL; in textiowrapper_read_chunk() local
1854 input_chunk = PyObject_CallMethodOneArg(self->buffer, in textiowrapper_read_chunk()
1858 if (input_chunk == NULL) in textiowrapper_read_chunk()
1861 if (PyObject_GetBuffer(input_chunk, &input_chunk_buf, 0) != 0) { in textiowrapper_read_chunk()
1865 Py_TYPE(input_chunk)->tp_name); in textiowrapper_read_chunk()
1872 decoded_chars = _textiowrapper_decode(self->decoder, input_chunk, eof); in textiowrapper_read_chunk()
1891 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
1903 Py_DECREF(input_chunk); in textiowrapper_read_chunk()
1910 Py_XDECREF(input_chunk); in textiowrapper_read_chunk()
2574 PyObject *input_chunk = _PyObject_CallMethodId( in _io_TextIOWrapper_seek_impl() local
2578 if (input_chunk == NULL) in _io_TextIOWrapper_seek_impl()
2581 if (!PyBytes_Check(input_chunk)) { in _io_TextIOWrapper_seek_impl()
2585 Py_TYPE(input_chunk)->tp_name); in _io_TextIOWrapper_seek_impl()
2586 Py_DECREF(input_chunk); in _io_TextIOWrapper_seek_impl()
2590 snapshot = Py_BuildValue("iN", cookie.dec_flags, input_chunk); in _io_TextIOWrapper_seek_impl()
2597 input_chunk, cookie.need_eof ? Py_True : Py_False, NULL); in _io_TextIOWrapper_seek_impl()