/third_party/python/Modules/ |
D | getpath.c | 946 *abs_path_p = Py_DecodeLocale(execpath, &len); in calculate_program_macos() 1120 wchar_t* wbuf = Py_DecodeLocale(modPath, &len); in calculate_argv0_path_framework() 1435 calculate->path_env = Py_DecodeLocale(path, &len); in calculate_init() 1442 calculate->pythonpath_macro = Py_DecodeLocale(PYTHONPATH, &len); in calculate_init() 1446 calculate->prefix_macro = Py_DecodeLocale(PREFIX, &len); in calculate_init() 1450 calculate->exec_prefix_macro = Py_DecodeLocale(EXEC_PREFIX, &len); in calculate_init() 1454 calculate->vpath_macro = Py_DecodeLocale(VPATH, &len); in calculate_init() 1460 wchar_t *pyversion = Py_DecodeLocale("python" VERSION, &len); in calculate_init()
|
D | readline.c | 1163 s = Py_DecodeLocale(rl_line_buffer, &start_size); in flex_complete() 1171 s = Py_DecodeLocale(rl_line_buffer + start, &end_size); in flex_complete()
|
/third_party/python/Include/ |
D | fileutils.h | 8 PyAPI_FUNC(wchar_t *) Py_DecodeLocale(
|
/third_party/python/Python/ |
D | frozenmain.c | 65 argv_copy[i] = Py_DecodeLocale(argv[i], NULL); in Py_FrozenMain()
|
D | fileutils.c | 645 Py_DecodeLocale(const char* arg, size_t *wlen) in Py_DecodeLocale() function 1918 wbuf = Py_DecodeLocale(cbuf, &r1); in _Py_wreadlink() 1961 wresolved_path = Py_DecodeLocale(cresolved_path, &r); in _Py_wrealpath() 2093 wname = Py_DecodeLocale(fname, &len); in _Py_wgetcwd()
|
D | preconfig.c | 87 wchar_t *arg = Py_DecodeLocale(args->bytes_argv[i], &len); in _PyArgv_AsWstrList()
|
D | initconfig.c | 832 str2 = Py_DecodeLocale(str, &len); in config_set_bytes_string()
|
/third_party/python/Misc/ |
D | coverity_model.c | 87 wchar_t *Py_DecodeLocale(const char* arg, size_t *size) in Py_DecodeLocale() function
|
D | stable_abi.txt | 1928 function Py_DecodeLocale
|
/third_party/python/Programs/ |
D | _testembed.c | 172 wchar_t *program = Py_DecodeLocale("./spam", NULL); in test_pre_initialization_api() 1414 wchar_t *path = Py_DecodeLocale(env, NULL); in test_init_setpath() 1447 wchar_t *path = Py_DecodeLocale(env, NULL); in test_init_setpath_config() 1476 wchar_t *home = Py_DecodeLocale(env, NULL); in test_init_setpythonhome()
|
/third_party/python/Modules/_xxtestfuzz/ |
D | fuzzer.c | 414 wchar_t* wide_program_name = Py_DecodeLocale(*argv[0], NULL); in LLVMFuzzerInitialize()
|
/third_party/python/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.10.0a7.rst | 188 :c:func:`Py_DecodeLocale` function now escapes byte sequences which would be
|
D | 3.8.0a4.rst | 1381 Since Python 3.7.0, calling :c:func:`Py_DecodeLocale` before
|
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
|
/third_party/python/Doc/c-api/ |
D | sys.rst | 119 .. c:function:: wchar_t* Py_DecodeLocale(const char* arg, size_t *size) 189 Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back
|
D | init.rst | 53 * :c:func:`Py_DecodeLocale` 367 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 511 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 617 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 644 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a 661 Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a
|
D | init_config.rst | 396 and ``free()`` is always safe. :c:func:`Py_DecodeLocale` must not be called 450 Decode *str* using :c:func:`Py_DecodeLocale` and set the result into 466 :c:func:`Py_DecodeLocale`.
|
D | unicode.rst | 793 The :c:func:`Py_DecodeLocale` function. 799 ``surrogateescape`` error handler, except on Android. Previously, :c:func:`Py_DecodeLocale` 896 The :c:func:`Py_DecodeLocale` function.
|
/third_party/python/PC/ |
D | python3dll.c | 49 EXPORT_FUNC(Py_DecodeLocale)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 780 function,Py_DecodeLocale,3.7,
|
/third_party/python/Doc/extending/ |
D | embedding.rst | 62 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
|
D | extending.rst | 389 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 3049 calculate->prefix_macro = Py_DecodeLocale(PREFIX, &len); 3054 calculate->exec_prefix_macro = Py_DecodeLocale(EXEC_PREFIX, &len); 3059 calculate->vpath_macro = Py_DecodeLocale(VPATH, &len);
|