Searched refs:PyUnicode_EncodeFSDefault (Results 1 – 25 of 25) sorted by relevance
/third_party/python/Modules/ |
D | spwdmodule.c | 145 if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL) in spwd_getspnam_impl()
|
D | grpmodule.c | 198 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in grp_getgrnam_impl()
|
D | pwdmodule.c | 222 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in pwd_getpwnam_impl()
|
D | nismodule.c | 202 if ((bkey = PyUnicode_EncodeFSDefault(ukey)) == NULL) { in nis_match()
|
D | _dbmmodule.c | 483 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
|
D | _gdbmmodule.c | 675 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
|
D | posixmodule.c | 3798 Py_SETREF(resobj, PyUnicode_EncodeFSDefault(resobj)); in posix_getcwd() 4058 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in _listdir_windows_no_opendir() 4281 Py_SETREF(str, PyUnicode_EncodeFSDefault(str)); in os__getfullpathname_impl() 4354 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getfinalpathname_impl() 4406 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getvolumepathname_impl() 8642 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os_readlink_impl() 13859 Py_SETREF(entry->name, PyUnicode_EncodeFSDefault(entry->name)); in DirEntry_from_find_data() 13873 Py_SETREF(entry->path, PyUnicode_EncodeFSDefault(entry->path)); in DirEntry_from_find_data()
|
D | gcmodule.c | 2151 if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr))) in _PyGC_DumpShutdownStats()
|
D | _tkinter.c | 3597 cexe = PyUnicode_EncodeFSDefault(uexe); in PyInit__tkinter()
|
D | socketmodule.c | 1663 if ((args = PyUnicode_EncodeFSDefault(args)) == NULL) in getsockaddrarg()
|
/third_party/python/Python/ |
D | importdl.c | 134 pathbytes = PyUnicode_EncodeFSDefault(path); in _PyImport_LoadDynamicModuleWithSpec()
|
D | traceback.c | 310 filebytes = PyUnicode_EncodeFSDefault(filename); in _Py_FindSourceFile() 338 path = PyUnicode_EncodeFSDefault(v); in _Py_FindSourceFile()
|
D | fileutils.c | 1241 bytes = PyUnicode_EncodeFSDefault(path); in _Py_stat()
|
/third_party/python/Include/ |
D | unicodeobject.h | 807 PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 727 function,PyUnicode_EncodeFSDefault,3.2,
|
D | refcounts.dat | 2846 PyUnicode_EncodeFSDefault:PyObject*::+1: 2847 PyUnicode_EncodeFSDefault:PyObject*:unicode:0:
|
/third_party/python/PC/ |
D | python3dll.c | 652 EXPORT_FUNC(PyUnicode_EncodeFSDefault)
|
/third_party/python/Doc/c-api/ |
D | sys.rst | 199 The :c:func:`PyUnicode_EncodeFSDefault` and
|
D | unicode.rst | 821 Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to 855 :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is. 916 .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1474 function PyUnicode_EncodeFSDefault
|
D | HISTORY | 8684 locale encoding) in PyUnicode_EncodeFSDefault(). 12772 - Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 56 PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and 58 Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on
|
D | 3.8.0a1.rst | 8789 :c:func:`PyUnicode_EncodeFSDefault` on error handling.
|
/third_party/python/Objects/ |
D | unicodeobject.c | 3856 PyUnicode_EncodeFSDefault(PyObject *unicode) in PyUnicode_EncodeFSDefault() function 4148 output = PyUnicode_EncodeFSDefault(path); in PyUnicode_FSConverter()
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 3256 Py_SETREF(result, PyUnicode_EncodeFSDefault(result));
|