Home
last modified time | relevance | path

Searched refs:m_base (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Python/
Dpystate.c448 Py_ssize_t index = module->m_base.m_index; in PyState_FindModule()
483 while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index) in _PyState_AddModule()
488 def->m_base.m_index, module); in _PyState_AddModule()
500 index = def->m_base.m_index; in PyState_AddModule()
516 Py_ssize_t index = def->m_base.m_index; in PyState_RemoveModule()
552 Py_CLEAR(md->m_base.m_copy); in _PyState_ClearModules()
Dimport.c661 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
665 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
670 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
671 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
721 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
729 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
733 if (def->m_base.m_init == NULL) in _PyImport_FindExtensionObjectEx()
735 mod = def->m_base.m_init(); in _PyImport_FindExtensionObjectEx()
1212 def->m_base.m_init = p->initfunc; in _imp_create_builtin()
Dimportdl.c215 def->m_base.m_init = p0; in _PyImport_LoadDynamicModuleWithSpec()
/external/python/cpython3/Include/
Dmoduleobject.h75 PyModuleDef_Base m_base; member
/external/python/cpython3/Objects/
Dmoduleobject.c48 if (def->m_base.m_index == 0) { in PyModuleDef_Init()
52 def->m_base.m_index = max_module_number; in PyModuleDef_Init()
/external/python/cpython3/Doc/c-api/
Dmodule.rst145 .. c:member:: PyModuleDef_Base m_base