Home
last modified time | relevance | path

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

/external/pdfium/testing/tools/
Dencode_pdf_filter.py135 def getbuffer(self): member in _SinkPdfStream
136 return self.buffer.getbuffer()
492 data=encoded_sink.getbuffer(),
/external/python/cpython3/Lib/multiprocessing/
Dpopen_forkserver.py58 f.write(buf.getbuffer())
Dpopen_spawn_posix.py62 f.write(fp.getbuffer())
Dconnection.py256 return _ForkingPickler.loads(buf.getbuffer())
320 f.write(ov.getbuffer())
338 buf = ov.getbuffer()
349 f.write(ov.getbuffer())
Dreduction.py52 return buf.getbuffer()
/external/python/cpython3/Lib/test/libregrtest/
Dwin_utils.py128 output = overlapped.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.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
/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.py487 return buffer.getbuffer()
/external/python/cpython3/Doc/library/
Dio.rst702 .. method:: getbuffer()
709 >>> view = b.getbuffer()
/external/python/cpython3/Lib/
Dpickle.py221 data = f.getbuffer()
D_pyio.py937 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.rst1115 The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, which
1133 >>> buffer = byte_stream.getbuffer()
/external/python/cpython3/Misc/
DHISTORY12152 - Issue #5506: BytesIO objects now have a getbuffer() method exporting a view of