Searched refs:getbuffer (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_forkserver.py | 54 f.write(buf.getbuffer())
|
D | popen_spawn_posix.py | 62 f.write(fp.getbuffer())
|
D | connection.py | 251 return _ForkingPickler.loads(buf.getbuffer()) 315 f.write(ov.getbuffer()) 333 buf = ov.getbuffer() 344 f.write(ov.getbuffer())
|
D | reduction.py | 52 return buf.getbuffer()
|
/external/python/cpython2/Python/ |
D | getargs.c | 47 static int getbuffer(PyObject *, Py_buffer *, char**); 873 if (getbuffer(arg, p, &buf) < 0) in convertsimple() 955 if (getbuffer(arg, p, &buf) < 0) in convertsimple() 1413 getbuffer(PyObject *arg, Py_buffer *view, char **errmsg) in getbuffer() function
|
/external/python/cpython3/Python/ |
D | getargs.c | 84 static int getbuffer(PyObject *, Py_buffer *, const char**); 940 if (getbuffer(arg, (Py_buffer*)p, &buf) < 0) in convertsimple() 985 if (getbuffer(arg, p, &buf) < 0) in convertsimple() 1371 if (getbuffer(arg, &view, errmsg) < 0) in convertbuffer() 1380 getbuffer(PyObject *arg, Py_buffer *view, const char **errmsg) in getbuffer() function
|
/external/python/cpython3/Lib/test/ |
D | test_memoryio.py | 443 buf = memio.getbuffer() 446 buf = memio.getbuffer() 464 self.assertRaises(ValueError, memio.getbuffer)
|
/external/python/cpython3/PC/layout/support/ |
D | appxmanifest.py | 482 return buffer.getbuffer()
|
/external/python/cpython3/Doc/library/ |
D | io.rst | 614 .. method:: getbuffer() 621 >>> view = b.getbuffer()
|
/external/python/cpython3/Lib/ |
D | pickle.py | 205 data = f.getbuffer()
|
D | _pyio.py | 857 def getbuffer(self): member in BytesIO
|
/external/python/cpython2/Modules/ |
D | cstubs | 1197 long getbuffer
|
D | glmodule.c | 5303 retval = getbuffer( ); in gl_getbuffer()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 1113 The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, which 1131 >>> buffer = byte_stream.getbuffer()
|
/external/python/cpython3/Misc/ |
D | HISTORY | 12152 - Issue #5506: BytesIO objects now have a getbuffer() method exporting a view of
|