Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dspwdmodule.c135 if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL) in spwd_getspnam_impl()
Dmain.c361 bytes = PyUnicode_EncodeFSDefault(unicode); in pymain_run_file()
397 startup_bytes = PyUnicode_EncodeFSDefault(startup_obj); in pymain_run_startup()
Dpwdmodule.c224 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in pwd_getpwnam_impl()
Dgrpmodule.c215 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in grp_getgrnam_impl()
Dnismodule.c170 if ((bkey = PyUnicode_EncodeFSDefault(ukey)) == NULL) in nis_match()
D_dbmmodule.c463 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
D_gdbmmodule.c652 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
Dposixmodule.c3718 Py_SETREF(resobj, PyUnicode_EncodeFSDefault(resobj)); in posix_getcwd()
3978 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in _listdir_windows_no_opendir()
4201 Py_SETREF(str, PyUnicode_EncodeFSDefault(str)); in os__getfullpathname_impl()
4274 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getfinalpathname_impl()
4326 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getvolumepathname_impl()
8508 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os_readlink_impl()
13592 Py_SETREF(entry->name, PyUnicode_EncodeFSDefault(entry->name)); in DirEntry_from_find_data()
13606 Py_SETREF(entry->path, PyUnicode_EncodeFSDefault(entry->path)); in DirEntry_from_find_data()
Dgcmodule.c2126 if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr))) in _PyGC_DumpShutdownStats()
D_tkinter.c3541 cexe = PyUnicode_EncodeFSDefault(uexe); in PyInit__tkinter()
Dsocketmodule.c1708 if ((args = PyUnicode_EncodeFSDefault(args)) == NULL) in getsockaddrarg()
/external/python/cpython3/Python/
Dimportdl.c131 pathbytes = PyUnicode_EncodeFSDefault(path); in _PyImport_LoadDynamicModuleWithSpec()
Dtraceback.c309 filebytes = PyUnicode_EncodeFSDefault(filename); in _Py_FindSourceFile()
337 path = PyUnicode_EncodeFSDefault(v); in _Py_FindSourceFile()
Dfileutils.c1026 bytes = PyUnicode_EncodeFSDefault(path); in _Py_stat()
/external/python/cpython3/Include/
Dunicodeobject.h787 PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
/external/python/cpython3/PC/
Dpython3.def677 PyUnicode_EncodeFSDefault=python39.PyUnicode_EncodeFSDefault
/external/python/cpython3/Doc/c-api/
Dsys.rst198 The :c:func:`PyUnicode_EncodeFSDefault` and
Dunicode.rst834 Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to
868 :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is.
930 .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
/external/python/cpython3/Doc/data/
Drefcounts.dat2869 PyUnicode_EncodeFSDefault:PyObject*::+1:
2870 PyUnicode_EncodeFSDefault:PyObject*:unicode:0:
/external/python/cpython3/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.
/external/python/cpython3/Objects/
Dunicodeobject.c3658 PyUnicode_EncodeFSDefault(PyObject *unicode) in PyUnicode_EncodeFSDefault() function
3950 output = PyUnicode_EncodeFSDefault(path); in PyUnicode_FSConverter()
/external/python/cpython3/Misc/
DHISTORY8684 locale encoding) in PyUnicode_EncodeFSDefault().
12772 - Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode