Home
last modified time | relevance | path

Searched refs:PyImport_ImportModuleLevel (Results 1 – 21 of 21) sorted by relevance

/aosp_15_r20/external/python/cpython2/Include/
Dimport.h18 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(char *name,
22 PyImport_ImportModuleLevel(n, g, l, f, -1)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dimport.h52 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
70 PyImport_ImportModuleLevel(n, g, l, f, 0)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dimport.h52 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
70 PyImport_ImportModuleLevel(n, g, l, f, 0)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dimport.h52 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
70 PyImport_ImportModuleLevel(n, g, l, f, 0)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dimport.h52 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
70 PyImport_ImportModuleLevel(n, g, l, f, 0)
/aosp_15_r20/external/python/cpython3/Include/
Dimport.h52 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
70 PyImport_ImportModuleLevel(n, g, l, f, 0)
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat522 PyImport_ImportModuleLevel:PyObject*::+1:
523 PyImport_ImportModuleLevel:char*:name::
524 PyImport_ImportModuleLevel:PyObject*:globals:0:???
525 PyImport_ImportModuleLevel:PyObject*:locals:0:???
526 PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
527 PyImport_ImportModuleLevel:int:level::
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dimport.rst68 The function is an alias for :c:func:`PyImport_ImportModuleLevel` with
72 .. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *local…
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat1027 PyImport_ImportModuleLevel:PyObject*::+1:
1028 PyImport_ImportModuleLevel:const char*:name::
1029 PyImport_ImportModuleLevel:PyObject*:globals:0:???
1030 PyImport_ImportModuleLevel:PyObject*:locals:0:???
1031 PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
1032 PyImport_ImportModuleLevel:int:level::
Dstable_abi.dat317 function,PyImport_ImportModuleLevel,3.2,,
Dpython3.11.abi300 …<elf-symbol name='PyImport_ImportModuleLevel' type='func-type' binding='global-binding' visibility…
13768PyImport_ImportModuleLevel' mangled-name='PyImport_ImportModuleLevel' filepath='Python/import.c' l…
/aosp_15_r20/external/python/cpython3/Python/
Dimport.c1927 PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals, in PyImport_ImportModuleLevel() function
1999 builtins = PyImport_ImportModuleLevel("builtins", in PyImport_Import()
/aosp_15_r20/external/python/cpython2/Python/
Dcodecs.c1030 mod = PyImport_ImportModuleLevel("encodings", NULL, NULL, NULL, 0); in _PyCodecRegistry_Init()
Dimport.c2329 PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, in PyImport_ImportModuleLevel() function
2911 builtins = PyImport_ImportModuleLevel("__builtin__", in PyImport_Import()
Dbltinmodule.c49 return PyImport_ImportModuleLevel(name, globals, locals, in builtin___import__()
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def965 "PyImport_ImportModuleLevel"
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c301 EXPORT_FUNC(PyImport_ImportModuleLevel)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dimport.rst73 .. c:function:: PyObject* PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject …
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml874 [function.PyImport_ImportModuleLevel]
DHISTORY10556 - Issue #12173: The first argument of PyImport_ImportModuleLevel is now `const
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.3.rst2486 longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`.