Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/python/
Dprotobuf.c79 PyObject* module = PyState_FindModule(&module_def); in PyUpb_ModuleState_MaybeGet()
91 PyObject* module = PyState_FindModule(&module_def); in PyUpb_ModuleState_Get()
106 PyObject* m = PyState_FindModule(&module_def); in PyUpb_GetWktBases()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dpystate.h46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
/aosp_15_r20/external/python/cpython3/Include/
Dpystate.h46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dpystate.h46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dpystate.h46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dpystate.h46 PyAPI_FUNC(PyObject*) PyState_FindModule(PyModuleDef*);
/aosp_15_r20/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``.
/aosp_15_r20/external/python/cpython3/Modules/_io/
D_iomodule.c575 PyObject *mod = PyState_FindModule(&_PyIO_Module); in _PyIO_get_module_state()
/aosp_15_r20/external/python/cpython3/Modules/
D_testmultiphase.c335 mod = PyState_FindModule(def); in call_state_registration_func()
Dreadline.c143 #define readlinestate_global ((readlinestate *)PyModule_GetState(PyState_FindModule(&readlinemodule…
D_elementtree.c106 ((elementtreestate *) PyModule_GetState(PyState_FindModule(&elementtreemodule)))
4376 m = PyState_FindModule(&elementtreemodule); in PyInit__elementtree()
D_pickle.c206 return _Pickle_GetState(PyState_FindModule(&_picklemodule)); in _Pickle_GetGlobalState()
7957 m = PyState_FindModule(&_picklemodule); in PyInit__pickle()
D_testcapimodule.c7631 m = PyState_FindModule(&_testcapimodule); in heapctypesubclasswithfinalizer_finalize()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c535 EXPORT_FUNC(PyState_FindModule)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat581 function,PyState_FindModule,3.2,,
Drefcounts.dat2086 PyState_FindModule:PyObject*::0:
2087 PyState_FindModule:PyModuleDef*:def::
Dpython3.11.abi629 …<elf-symbol name='PyState_FindModule' type='func-type' binding='global-binding' visibility='defaul…
14824PyState_FindModule' mangled-name='PyState_FindModule' filepath='Python/pystate.c' line='868' colum…
/aosp_15_r20/external/python/cpython3/Python/
Dpystate.c889 PyState_FindModule(PyModuleDef* module) in PyState_FindModule() function
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1295 [function.PyState_FindModule]
DHISTORY6630 - Issue #15726: Fix incorrect bounds checking in PyState_FindModule. Patch by
7403 - Issue #15081: Document PyState_FindModule.