HomeSort by relevance Sort by last modified time
    Searched refs:readinto1 (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Modules/_io/
bufferedio.c 39 _Py_IDENTIFIER(readinto1); variable
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
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 680 def readinto1(self, b): member in class:BufferedIOBase
1318 def readinto1(self, b): member in class:BufferedRWPair
1405 def readinto1(self, b): member in class:BufferedRandom
    [all...]
  /external/python/cpython3/Lib/test/
test_io.py 367 self.assertEqual(f.readinto1(data), 5)
896 for method in ("readinto", "readinto1"):
939 # Exercise the default BufferedIOBase.readinto() and readinto1()
    [all...]

Completed in 213 milliseconds