Home
last modified time | relevance | path

Searched refs:PyMarshal_ReadObjectFromString (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Include/
Dmarshal.h20 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(char *, Py_ssize_t);
/external/python/cpython3/Include/
Dmarshal.h22 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(const char *,
/external/python/cpython2/PC/os2vacpp/
Dpython.def254 PyMarshal_ReadObjectFromString
/external/python/cpython3/Doc/c-api/
Dmarshal.rst87 .. c:function:: PyObject* PyMarshal_ReadObjectFromString(const char *data, Py_ssize_t len)
/external/python/cpython2/Doc/c-api/
Dmarshal.rst91 .. c:function:: PyObject* PyMarshal_ReadObjectFromString(char *string, Py_ssize_t len)
/external/python/cpython2/Python/
Dmarshal.c1155 PyObject* v = PyMarshal_ReadObjectFromString(pBuf, n); in PyMarshal_ReadLastObjectFromFile()
1185 PyMarshal_ReadObjectFromString(char *str, Py_ssize_t len) in PyMarshal_ReadObjectFromString() function
Dimport.c2092 return PyMarshal_ReadObjectFromString((char *)p->code, size); in get_frozen_object()
2124 co = PyMarshal_ReadObjectFromString((char *)p->code, size); in PyImport_ImportFrozenModule()
/external/python/cpython2/Doc/data/
Drefcounts.dat730 PyMarshal_ReadObjectFromString:PyObject*::+1:
731 PyMarshal_ReadObjectFromString:char*:string::
732 PyMarshal_ReadObjectFromString:int:len::
/external/python/cpython3/Python/
Dmarshal.c1557 PyObject* v = PyMarshal_ReadObjectFromString(pBuf, n); in PyMarshal_ReadLastObjectFromFile()
1592 PyMarshal_ReadObjectFromString(const char *str, Py_ssize_t len) in PyMarshal_ReadObjectFromString() function
Dimport.c1271 return PyMarshal_ReadObjectFromString((const char *)p->code, size); in get_frozen_object()
1323 co = PyMarshal_ReadObjectFromString((const char *)p->code, size); in PyImport_ImportFrozenModuleObject()
/external/python/cpython2/PC/os2emx/
Dpython27.def993 "PyMarshal_ReadObjectFromString"
/external/python/cpython2/Modules/
Dzipimport.c1085 code = PyMarshal_ReadObjectFromString((char *)buf + 8, size - 8); in unmarshal_code()
/external/python/cpython3/Doc/data/
Drefcounts.dat1244 PyMarshal_ReadObjectFromString:PyObject*::+1:
1245 PyMarshal_ReadObjectFromString:const char*:string::
1246 PyMarshal_ReadObjectFromString:Py_ssize_t:len::
/external/python/cpython3/Modules/
Dzipimport.c1372 code = PyMarshal_ReadObjectFromString((char *)buf + 16, size - 16); in unmarshal_code()