Searched refs:Py_DecodeLocale (Results 1 – 23 of 23) sorted by relevance
/external/python/cpython3/Modules/ |
D | getpath.c | 363 vpath = Py_DecodeLocale(VPATH, NULL); in search_for_prefix() 600 wchar_t *path = Py_DecodeLocale(execpath, &len); in calculate_program_full_path() 689 wchar_t* wbuf = Py_DecodeLocale(modPath, &len); in calculate_argv0_path() 897 calculate->path_env = Py_DecodeLocale(path, &len); in calculate_init() 903 calculate->pythonpath = Py_DecodeLocale(PYTHONPATH, &len); in calculate_init() 907 calculate->prefix = Py_DecodeLocale(PREFIX, &len); in calculate_init() 911 calculate->exec_prefix = Py_DecodeLocale(EXEC_PREFIX, &len); in calculate_init() 915 calculate->lib_python = Py_DecodeLocale("lib/python" VERSION, &len); in calculate_init()
|
D | readline.c | 1041 s = Py_DecodeLocale(rl_line_buffer, &start_size); in flex_complete() 1049 s = Py_DecodeLocale(rl_line_buffer + start, &end_size); in flex_complete()
|
D | main.c | 212 wchar_t *wvar = Py_DecodeLocale(var, &len); in config_get_env_var_dup() 537 wchar_t *arg = Py_DecodeLocale(pymain->bytes_argv[i], &len); in pymain_init_cmdline_argv() 1158 wchar_t* program_name = Py_DecodeLocale(p, &len); in config_init_program_name() 1174 wchar_t* program_name = Py_DecodeLocale(pyvenv_launcher, &len); in config_init_program_name()
|
/external/python/cpython3/Python/ |
D | frozenmain.c | 65 argv_copy[i] = Py_DecodeLocale(argv[i], NULL); in Py_FrozenMain()
|
D | fileutils.c | 535 Py_DecodeLocale(const char* arg, size_t *wlen) in Py_DecodeLocale() function 1565 wbuf = Py_DecodeLocale(cbuf, &r1); in _Py_wreadlink() 1606 wresolved_path = Py_DecodeLocale(cresolved_path, &r); in _Py_wrealpath() 1639 wname = Py_DecodeLocale(fname, &len); in _Py_wgetcwd()
|
/external/python/cpython3/Misc/ |
D | coverity_model.c | 87 wchar_t *Py_DecodeLocale(const char* arg, size_t *size) in Py_DecodeLocale() function
|
D | HISTORY | 26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
|
/external/python/cpython3/Include/ |
D | fileutils.h | 9 PyAPI_FUNC(wchar_t *) Py_DecodeLocale(
|
/external/python/cpython3/Programs/ |
D | _testembed.c | 145 wchar_t *program = Py_DecodeLocale("./spam", NULL); in test_pre_initialization_api()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 47 Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode
|
D | 3.7.1rc1.rst | 117 On FreeBSD, Py_DecodeLocale() and Py_EncodeLocale() now also forces the
|
D | 3.7.0a3.rst | 43 initialized statically, and so PyMem_RawMalloc() and Py_DecodeLocale() can
|
D | 3.5.3rc1.rst | 74 Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode
|
D | 3.5.0a1.rst | 5159 Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename
|
D | 3.7.0a1.rst | 1137 Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode
|
/external/python/cpython3/Doc/c-api/ |
D | sys.rst | 101 .. c:function:: wchar_t* Py_DecodeLocale(const char* arg, size_t *size) 169 Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back
|
D | init.rst | 50 * :c:func:`Py_DecodeLocale` 362 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 476 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 578 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 605 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 622 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
|
D | unicode.rst | 778 The :c:func:`Py_DecodeLocale` function. 784 ``surrogateescape`` error handler, except on Android. Previously, :c:func:`Py_DecodeLocale` 882 The :c:func:`Py_DecodeLocale` function.
|
/external/python/cpython3/PC/ |
D | python3.def | 725 Py_DecodeLocale=python37.Py_DecodeLocale
|
/external/python/cpython3/Doc/extending/ |
D | embedding.rst | 61 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
|
D | extending.rst | 381 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 2185 * :c:func:`Py_DecodeLocale` (replaced ``_Py_char2wchar()``),
|
D | 3.7.rst | 1723 :c:func:`Py_DecodeLocale`, :c:func:`Py_EncodeLocale` now use the UTF-8
|