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()
Dpwdmodule.c159 if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL) in pwd_getpwnam_impl()
Dgrpmodule.c152 if ((bytes = PyUnicode_EncodeFSDefault(name)) == NULL) in grp_getgrnam_impl()
Dnismodule.c170 if ((bkey = PyUnicode_EncodeFSDefault(ukey)) == NULL) in nis_match()
D_dbmmodule.c454 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
D_gdbmmodule.c610 PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename); in dbmopen_impl()
Dposixmodule.c3512 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in _listdir_windows_no_opendir()
3726 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in os__getfullpathname_impl()
3802 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getfinalpathname_impl()
3881 Py_SETREF(result, PyUnicode_EncodeFSDefault(result)); in os__getvolumepathname_impl()
11996 Py_SETREF(entry->name, PyUnicode_EncodeFSDefault(entry->name)); in DirEntry_from_find_data()
12010 Py_SETREF(entry->path, PyUnicode_EncodeFSDefault(entry->path)); in DirEntry_from_find_data()
Dgcmodule.c1633 if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr))) in _PyGC_DumpShutdownStats()
Dmain.c412 bytes = PyUnicode_EncodeFSDefault(unicode); in pymain_run_file()
D_tkinter.c3513 cexe = PyUnicode_EncodeFSDefault(uexe); in PyInit__tkinter()
Dsocketmodule.c1608 if ((args = PyUnicode_EncodeFSDefault(args)) == NULL) in getsockaddrarg()
/external/python/cpython3/Python/
Dimportdl.c126 pathbytes = PyUnicode_EncodeFSDefault(path); in _PyImport_LoadDynamicModuleWithSpec()
Dtraceback.c299 filebytes = PyUnicode_EncodeFSDefault(filename); in _Py_FindSourceFile()
327 path = PyUnicode_EncodeFSDefault(v); in _Py_FindSourceFile()
Dfileutils.c929 bytes = PyUnicode_EncodeFSDefault(path); in _Py_stat()
/external/python/cpython3/PC/
Dpython3.def677 PyUnicode_EncodeFSDefault=python37.PyUnicode_EncodeFSDefault
/external/python/cpython3/Doc/c-api/
Dsys.rst177 The :c:func:`PyUnicode_EncodeFSDefault` and
Dunicode.rst806 Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to
840 :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is.
902 .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
/external/python/cpython3/Include/
Dunicodeobject.h1859 PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
/external/python/cpython3/Misc/NEWS.d/
D3.7.2rc1.rst1001 :c:func:`PyUnicode_EncodeFSDefault` on error handling.
D3.5.0a1.rst56 PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and
58 Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on
/external/python/cpython3/Doc/data/
Drefcounts.dat2828 PyUnicode_EncodeFSDefault:PyObject*::+1:
2829 PyUnicode_EncodeFSDefault:PyObject*:unicode:0:
/external/python/cpython3/Objects/
Dunicodeobject.c3444 PyUnicode_EncodeFSDefault(PyObject *unicode) in PyUnicode_EncodeFSDefault() function
3718 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