Home | History | Annotate | Download | only in _io

Lines Matching refs:readinto1

39 _Py_IDENTIFIER(readinto1);
63 _bufferediobase_readinto_generic(PyObject *self, Py_buffer *buffer, char readinto1)
69 readinto1 ? &PyId_read1 : &PyId_read,
110 _io._BufferedIOBase.readinto1
971 _buffered_readinto_generic(buffered *self, Py_buffer *buffer, char readinto1)
1013 /* In readinto1 mode, we do not want to fill the internal
1015 else if (!(readinto1 && written)) {
1039 /* At most one read in readinto1 mode */
1040 if (readinto1) {
1066 _io._Buffered.readinto1
2574 {"readinto1", (PyCFunction)bufferedrwpair_readinto1, METH_VARARGS},