Home
last modified time | relevance | path

Searched refs:PySys_SetArgvEx (Results 1 – 25 of 25) sorted by relevance

/aosp_15_r20/external/python/cpython2/Demo/embed/
Ddemo.c31 PySys_SetArgvEx(argc, argv, 0); in main()
/aosp_15_r20/external/python/cpython2/Include/
Dsysmodule.h14 PyAPI_FUNC(void) PySys_SetArgvEx(int, char **, int);
/aosp_15_r20/external/python/cpython3/Include/
Dsysmodule.h14 Py_DEPRECATED(3.11) PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dsysmodule.h14 Py_DEPRECATED(3.11) PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dsysmodule.h14 Py_DEPRECATED(3.11) PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dsysmodule.h14 Py_DEPRECATED(3.11) PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dsysmodule.h14 Py_DEPRECATED(3.11) PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
/aosp_15_r20/external/python/cpython2/Python/
Dsysmodule.c1619 PySys_SetArgvEx(int argc, char **argv, int updatepath) in PySys_SetArgvEx() function
1725 PySys_SetArgvEx(argc, argv, 1); in PySys_SetArgv()
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7rc1.rst99 A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2150 PySys_SetArgvEx:void:::
2151 PySys_SetArgvEx:int:argc::
2152 PySys_SetArgvEx:wchar_t**:argv::
2153 PySys_SetArgvEx:int:updatepath::
Dstable_abi.dat601 function,PySys_SetArgvEx,3.2,,
Dpython3.11.abi658 …<elf-symbol name='PySys_SetArgvEx' type='func-type' binding='global-binding' visibility='default-v…
15598PySys_SetArgvEx' mangled-name='PySys_SetArgvEx' filepath='./Python/sysmodule.c' line='3269' column…
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dinit.rst29 single: PySys_SetArgvEx()
39 :c:func:`PySys_SetArgvEx` for that. This is a no-op when called for a second time
269 .. c:function:: void PySys_SetArgvEx(int argc, char **argv, int updatepath)
316 This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set to ``1``.
Dintro.rst530 .. index:: single: PySys_SetArgvEx()
534 be set explicitly with a call to ``PySys_SetArgvEx(argc, argv, updatepath)``
/aosp_15_r20/external/python/cpython3/Python/
Dsysmodule.c3315 PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath) in PySys_SetArgvEx() function
3363 PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0); in PySys_SetArgv()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c551 EXPORT_FUNC(PySys_SetArgvEx)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dinit.rst241 single: PySys_SetArgvEx()
252 :c:func:`PySys_SetArgvEx` for that. This is a no-op when called for a second time
612 .. c:function:: void PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)
676 This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/
D2.7.rst2133 * New function: :c:func:`PySys_SetArgvEx` sets the value of
2148 whether the application should be using :c:func:`PySys_SetArgvEx`
2517 * The :c:func:`PySys_SetArgvEx` function was added, letting
2521 application should be using :c:func:`PySys_SetArgvEx` with
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D2.7.rst2157 * New function: :c:func:`PySys_SetArgvEx` sets the value of
2172 whether the application should be using :c:func:`PySys_SetArgvEx`
2547 * The :c:func:`PySys_SetArgvEx` function was added, letting
2551 application should be using :c:func:`PySys_SetArgvEx` with
D3.11.rst2571 * :c:func:`PySys_SetArgvEx`
D3.2.rst2566 * A new C API function :c:func:`PySys_SetArgvEx` allows an embedded interpreter
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1323 [function.PySys_SetArgvEx]
DHISTORY13070 - Issue #5753: A new C API function, `PySys_SetArgvEx`, allows embedders of the
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0b1.rst2032 :c:func:`PySys_SetArgvEx`, :c:func:`PySys_SetPath`. Patch by Victor Stinner.
D3.9.0a1.rst5600 Fix a crash in ``PySys_SetArgvEx(0, NULL, 0)``.