Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpystate.h56 PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*);
/external/python/cpython3/Doc/c-api/
Dmodule.rst591 .. c:function:: PyObject* PyState_FindModule(PyModuleDef *def)
601 the module object to be accessible via :c:func:`PyState_FindModule`.
608 subsequently calls ``PyState_FindModule``.
/external/python/cpython3/Modules/_io/
D_iomodule.c626 PyObject *mod = PyState_FindModule(&_PyIO_Module); in _PyIO_get_module_state()
/external/python/cpython3/Modules/
D_testmultiphase.c331 mod = PyState_FindModule(def); in call_state_registration_func()
Dreadline.c141 #define readlinestate_global ((readlinestate *)PyModule_GetState(PyState_FindModule(&readlinemodule…
D_elementtree.c116 ((elementtreestate *) PyModule_GetState(PyState_FindModule(&elementtreemodule)))
4388 m = PyState_FindModule(&elementtreemodule); in PyInit__elementtree()
D_pickle.c194 return _Pickle_GetState(PyState_FindModule(&_picklemodule)); in _Pickle_GetGlobalState()
7957 m = PyState_FindModule(&_picklemodule); in PyInit__pickle()
D_testcapimodule.c6791 m = PyState_FindModule(&_testcapimodule); in heapctypesubclasswithfinalizer_finalize()
/external/python/cpython3/PC/
Dpython3dll.c524 EXPORT_FUNC(PyState_FindModule)
/external/python/cpython3/Doc/data/
Dstable_abi.dat564 function,PyState_FindModule,3.2,
Drefcounts.dat2086 PyState_FindModule:PyObject*::0:
2087 PyState_FindModule:PyModuleDef*:def::
Dpython3.10.abi613 …<elf-symbol name='PyState_FindModule' type='func-type' binding='global-binding' visibility='defaul…
17393PyState_FindModule' mangled-name='PyState_FindModule' filepath='Python/pystate.c' line='700' colum…
20520 …<function-decl name='PyState_FindModule' mangled-name='PyState_FindModule' filepath='./Include/pys…
/external/python/cpython3/Python/
Dpystate.c700 PyState_FindModule(struct PyModuleDef* module) in PyState_FindModule() function
/external/python/cpython3/Misc/
Dstable_abi.txt1203 function PyState_FindModule
DHISTORY6630 - Issue #15726: Fix incorrect bounds checking in PyState_FindModule. Patch by
7403 - Issue #15081: Document PyState_FindModule.