Lines Matching refs:next_input
1890 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() local
1891 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
1893 if (next_input == NULL) { in textiowrapper_read_chunk()
1896 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input); in textiowrapper_read_chunk()
2641 PyObject *next_input; in _io_TextIOWrapper_tell_impl() local
2689 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input)) in _io_TextIOWrapper_tell_impl()
2692 assert (PyBytes_Check(next_input)); in _io_TextIOWrapper_tell_impl()
2694 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl()
2753 assert(skip_back <= PyBytes_GET_SIZE(next_input)); in _io_TextIOWrapper_tell_impl()
2754 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl()
2797 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl()
2798 input_end = input + PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl()