Lines Matching refs:next_input
1900 PyObject *next_input = dec_buffer; in textiowrapper_read_chunk() local
1901 PyBytes_Concat(&next_input, input_chunk); in textiowrapper_read_chunk()
1903 if (next_input == NULL) { in textiowrapper_read_chunk()
1906 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input); in textiowrapper_read_chunk()
2653 PyObject *next_input; in _io_TextIOWrapper_tell_impl() local
2701 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input)) in _io_TextIOWrapper_tell_impl()
2704 assert (PyBytes_Check(next_input)); in _io_TextIOWrapper_tell_impl()
2706 cookie.start_pos -= PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl()
2765 assert(skip_back <= PyBytes_GET_SIZE(next_input)); in _io_TextIOWrapper_tell_impl()
2766 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl()
2809 input = PyBytes_AS_STRING(next_input); in _io_TextIOWrapper_tell_impl()
2810 input_end = input + PyBytes_GET_SIZE(next_input); in _io_TextIOWrapper_tell_impl()