Home
last modified time | relevance | path

Searched refs:PyObject_AsReadBuffer (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Doc/c-api/
Dobjbuffer.rst31 .. c:function:: int PyObject_AsReadBuffer(PyObject *obj, const void **buffer, Py_ssize_t *buffer_le…
/external/python/cpython3/Doc/c-api/
Dobjbuffer.rst30 .. c:function:: int PyObject_AsReadBuffer(PyObject *obj, const void **buffer, Py_ssize_t *buffer_le…
/external/python/cpython2/Modules/
D_codecsmodule.c224 if (PyObject_AsReadBuffer(obj, (const void **)&data, &size)) in unicode_internal_decode()
653 if (PyObject_AsReadBuffer(obj, (const void **)&data, &size)) in unicode_internal_encode()
/external/python/cpython2/Include/
Dabstract.h501 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
/external/python/cpython3/Include/
Dabstract.h489 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
/external/python/cpython3/PC/
Dpython3.def446 PyObject_AsReadBuffer=python37.PyObject_AsReadBuffer
/external/python/cpython3/Doc/data/
Drefcounts.dat1548 PyObject_AsReadBuffer:int:::
1549 PyObject_AsReadBuffer:PyObject*:obj:0:
1550 PyObject_AsReadBuffer:const void**:buffer::
1551 PyObject_AsReadBuffer:Py_ssize_t*:buffer_len::
/external/python/cpython2/PC/os2emx/
Dpython27.def128 "PyObject_AsReadBuffer"
/external/python/cpython3/Objects/
Dabstract.c318 int PyObject_AsReadBuffer(PyObject *obj, in PyObject_AsReadBuffer() function
/external/python/cpython2/Python/
Dbltinmodule.c556 else if (!PyObject_AsReadBuffer(cmd, (const void **)&str, &length)) { in builtin_compile()
/external/python/cpython2/Objects/
Dfileobject.c1965 res = PyObject_AsReadBuffer(v, (const void**)&buffer, &len); in file_writelines()
Dabstract.c291 int PyObject_AsReadBuffer(PyObject *obj, in PyObject_AsReadBuffer() function
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1923 if (PyObject_AsReadBuffer(arg, &data, &data_length) < 0) { in CheckAndGetInteger()
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c648 if (-1 == PyObject_AsReadBuffer(obj, &buffer, &buffer_len)) in CDataType_from_buffer_copy()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst26 Avoid using PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and
/external/python/cpython3/Misc/
DHISTORY959 - Issue #22896: Avoid using PyObject_AsCharBuffer(), PyObject_AsReadBuffer()