Home
last modified time | relevance | path

Searched refs:getbuffer (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Lib/multiprocessing/
Dpopen_forkserver.py54 f.write(buf.getbuffer())
Dpopen_spawn_posix.py62 f.write(fp.getbuffer())
Dconnection.py251 return _ForkingPickler.loads(buf.getbuffer())
315 f.write(ov.getbuffer())
333 buf = ov.getbuffer()
344 f.write(ov.getbuffer())
Dreduction.py52 return buf.getbuffer()
/external/python/cpython2/Python/
Dgetargs.c47 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/
Dgetargs.c84 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/
Dtest_memoryio.py443 buf = memio.getbuffer()
446 buf = memio.getbuffer()
464 self.assertRaises(ValueError, memio.getbuffer)
/external/python/cpython3/PC/layout/support/
Dappxmanifest.py482 return buffer.getbuffer()
/external/python/cpython3/Doc/library/
Dio.rst614 .. method:: getbuffer()
621 >>> view = b.getbuffer()
/external/python/cpython3/Lib/
Dpickle.py205 data = f.getbuffer()
D_pyio.py857 def getbuffer(self): member in BytesIO
/external/python/cpython2/Modules/
Dcstubs1197 long getbuffer
Dglmodule.c5303 retval = getbuffer( ); in gl_getbuffer()
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1113 The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, which
1131 >>> buffer = byte_stream.getbuffer()
/external/python/cpython3/Misc/
DHISTORY12152 - Issue #5506: BytesIO objects now have a getbuffer() method exporting a view of