Home
last modified time | relevance | path

Searched refs:Py_DecodeLocale (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Modules/
Dgetpath.c339 vpath = Py_DecodeLocale(VPATH, NULL); in search_for_prefix()
494 _pythonpath = Py_DecodeLocale(PYTHONPATH, NULL); in calculate_path()
495 _prefix = Py_DecodeLocale(PREFIX, NULL); in calculate_path()
496 _exec_prefix = Py_DecodeLocale(EXEC_PREFIX, NULL); in calculate_path()
497 lib_python = Py_DecodeLocale("lib/python" VERSION, NULL); in calculate_path()
506 path_buffer = Py_DecodeLocale(_path, NULL); in calculate_path()
587 wchar_t* wbuf = Py_DecodeLocale(modPath, NULL); in calculate_path()
712 rtpypath = Py_DecodeLocale(_rtpypath, &rtpypath_len); in calculate_path()
Dreadline.c1061 s = Py_DecodeLocale(rl_line_buffer, &start_size); in flex_complete()
1069 s = Py_DecodeLocale(rl_line_buffer + start, &end_size); in flex_complete()
Dmain.c679 wchar_t* wbuf = Py_DecodeLocale(pyvenv_launcher, NULL); in Py_Main()
/external/python/cpython3/Programs/
Dpython.c54 argv_copy[i] = Py_DecodeLocale(argv[i], NULL); in main()
/external/python/cpython3/Python/
Dfileutils.c274 Py_DecodeLocale(const char* arg, size_t *size) in Py_DecodeLocale() function
1363 wbuf = Py_DecodeLocale(cbuf, &r1); in _Py_wreadlink()
1404 wresolved_path = Py_DecodeLocale(cresolved_path, &r); in _Py_wrealpath()
1437 wname = Py_DecodeLocale(fname, &len); in _Py_wgetcwd()
Dfrozenmain.c57 argv_copy[i] = Py_DecodeLocale(argv[i], NULL); in Py_FrozenMain()
/external/python/cpython3/Include/
Dfileutils.h9 PyAPI_FUNC(wchar_t *) Py_DecodeLocale(
/external/python/cpython3/Misc/
Dcoverity_model.c87 wchar_t *Py_DecodeLocale(const char* arg, size_t *size) in Py_DecodeLocale() function
DNEWS459 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
3528 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
8295 - Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`,
DHISTORY26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
/external/python/cpython3/Doc/c-api/
Dsys.rst61 .. c:function:: wchar_t* Py_DecodeLocale(const char* arg, size_t *size)
104 Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back
Dinit.rst150 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
264 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
366 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
393 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
410 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
Dunicode.rst772 The :c:func:`Py_DecodeLocale` function.
860 The :c:func:`Py_DecodeLocale` function.
/external/python/cpython3/PC/
Dpython3.def717 Py_DecodeLocale=python36.Py_DecodeLocale
/external/python/cpython3/Doc/extending/
Dembedding.rst61 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
Dextending.rst378 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
/external/python/cpython3/Objects/
Dunicodeobject.c3493 wstr = Py_DecodeLocale(errmsg, &errlen); in PyUnicode_EncodeLocale()
3737 wstr = Py_DecodeLocale(str, &wlen); in PyUnicode_DecodeLocaleAndSize()
3790 wstr = Py_DecodeLocale(errmsg, &errlen); in PyUnicode_DecodeLocaleAndSize()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2185 * :c:func:`Py_DecodeLocale` (replaced ``_Py_char2wchar()``),