/aosp_15_r20/external/python/cpython2/Include/ |
D | pythonrun.h | 38 PyAPI_FUNC(int) PyRun_SimpleFileExFlags(FILE *, const char *, int, PyCompilerFlags *); 91 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 92 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/external/python/cpython3/Include/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 92 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 98 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 104 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 108 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler… 112 file. If *closeit* is true, the file is closed before PyRun_SimpleFileExFlags
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 79 ``PyRun_SimpleFileExFlags()`` returns. 103 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 109 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 113 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler… 119 ``PyRun_SimpleFileExFlags()`` returns.
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | pythonrun.c | 761 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags); in PyRun_AnyFileExFlags() 919 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function 1997 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile() 2004 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | pythonrun.c | 466 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function 1956 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile() 1963 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | main.c | 163 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in RunStartupFile()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1891 PyRun_SimpleFileExFlags:int::: 1892 PyRun_SimpleFileExFlags:FILE*:fp:: 1893 PyRun_SimpleFileExFlags:const char*:filename:: 1894 PyRun_SimpleFileExFlags:int:closeit:: 1895 PyRun_SimpleFileExFlags:PyCompilerFlags*:flags::
|
D | python3.11.abi | 590 …<elf-symbol name='PyRun_SimpleFileExFlags' type='func-type' binding='global-binding' visibility='d… 15072 …PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line…
|
/aosp_15_r20/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1069 "PyRun_SimpleFileExFlags"
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 119 :c:func:`PyRun_SimpleFileExFlags()` now uses the correct encoding to decode
|
D | 3.8.0a1.rst | 1078 Decref the module object in :c:func:`PyRun_SimpleFileExFlags` before calling 1153 ``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition
|
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1421 In PyRun_SimpleFileExFlags avoid invalid memory access with short file
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | HISTORY | 6511 `PyRun_SimpleFileExFlags()` when filename points to a pyc/pyo file, closeit is 15133 - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
|