Home
last modified time | relevance | path

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

/third_party/python/Lib/multiprocessing/
Dpopen_spawn_posix.py62 f.write(fp.getbuffer())
Dpopen_forkserver.py58 f.write(buf.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()
/third_party/python/Lib/test/libregrtest/
Dwin_utils.py128 output = overlapped.getbuffer()
/third_party/python/Python/
Dgetargs.c85 static int getbuffer(PyObject *, Py_buffer *, const char**);
905 if (getbuffer(arg, (Py_buffer*)p, &buf) < 0) in convertsimple()
951 if (getbuffer(arg, p, &buf) < 0) in convertsimple()
1347 if (getbuffer(arg, &view, errmsg) < 0) in convertbuffer()
1356 getbuffer(PyObject *arg, Py_buffer *view, const char **errmsg) in getbuffer() function
/third_party/python/Lib/test/
Dtest_memoryio.py443 buf = memio.getbuffer()
446 buf = memio.getbuffer()
464 self.assertRaises(ValueError, memio.getbuffer)
/third_party/python/PC/layout/support/
Dappxmanifest.py479 return buffer.getbuffer()
/third_party/python/Doc/library/
Dio.rst704 .. method:: getbuffer()
711 >>> view = b.getbuffer()
/third_party/python/Lib/
Dpickle.py221 data = f.getbuffer()
D_pyio.py938 def getbuffer(self): member in BytesIO
/third_party/python/Doc/whatsnew/
D3.2.rst1115 The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, which
1133 >>> buffer = byte_stream.getbuffer()
/third_party/python/Misc/
DHISTORY12152 - Issue #5506: BytesIO objects now have a getbuffer() method exporting a view of