Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dspwdmodule.c145 if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL) in spwd_getspnam_impl()
Dgrpmodule.c198 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in grp_getgrnam_impl()
Dpwdmodule.c222 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in pwd_getpwnam_impl()
Dnismodule.c202 if ((bkey = PyUnicode_EncodeFSDefault(ukey)) == NULL) { in nis_match()
D_dbmmodule.c483 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
D_gdbmmodule.c675 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
Dposixmodule.c3798 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()
Dgcmodule.c2151 if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr))) in _PyGC_DumpShutdownStats()
D_tkinter.c3597 cexe = PyUnicode_EncodeFSDefault(uexe); in PyInit__tkinter()
Dsocketmodule.c1663 if ((args = PyUnicode_EncodeFSDefault(args)) == NULL) in getsockaddrarg()
/third_party/python/Python/
Dimportdl.c134 pathbytes = PyUnicode_EncodeFSDefault(path); in _PyImport_LoadDynamicModuleWithSpec()
Dtraceback.c310 filebytes = PyUnicode_EncodeFSDefault(filename); in _Py_FindSourceFile()
338 path = PyUnicode_EncodeFSDefault(v); in _Py_FindSourceFile()
Dfileutils.c1241 bytes = PyUnicode_EncodeFSDefault(path); in _Py_stat()
/third_party/python/Include/
Dunicodeobject.h807 PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
/third_party/python/Doc/data/
Dstable_abi.dat727 function,PyUnicode_EncodeFSDefault,3.2,
Drefcounts.dat2846 PyUnicode_EncodeFSDefault:PyObject*::+1:
2847 PyUnicode_EncodeFSDefault:PyObject*:unicode:0:
/third_party/python/PC/
Dpython3dll.c652 EXPORT_FUNC(PyUnicode_EncodeFSDefault)
/third_party/python/Doc/c-api/
Dsys.rst199 The :c:func:`PyUnicode_EncodeFSDefault` and
Dunicode.rst821 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/
Dstable_abi.txt1474 function PyUnicode_EncodeFSDefault
DHISTORY8684 locale encoding) in PyUnicode_EncodeFSDefault().
12772 - Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst56 PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and
58 Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on
D3.8.0a1.rst8789 :c:func:`PyUnicode_EncodeFSDefault` on error handling.
/third_party/python/Objects/
Dunicodeobject.c3856 PyUnicode_EncodeFSDefault(PyObject *unicode) in PyUnicode_EncodeFSDefault() function
4148 output = PyUnicode_EncodeFSDefault(path); in PyUnicode_FSConverter()
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch3256 Py_SETREF(result, PyUnicode_EncodeFSDefault(result));