Home
last modified time | relevance | path

Searched refs:PyUnicode_EncodeFSDefault (Results 1 – 19 of 19) 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()
Dmain.c325 bytes = PyUnicode_EncodeFSDefault(unicode); in run_file()
Dgcmodule.c1651 if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr))) in _PyGC_DumpShutdownStats()
Dposixmodule.c3438 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in _listdir_windows_no_opendir()
3652 Py_SETREF(v, PyUnicode_EncodeFSDefault(v)); in os__getfullpathname_impl()
11564 Py_SETREF(entry->name, PyUnicode_EncodeFSDefault(entry->name));
11578 Py_SETREF(entry->path, PyUnicode_EncodeFSDefault(entry->path));
D_tkinter.c3602 cexe = PyUnicode_EncodeFSDefault(uexe); in PyInit__tkinter()
Dsocketmodule.c1547 if ((args = PyUnicode_EncodeFSDefault(args)) == NULL) in getsockaddrarg()
/external/python/cpython3/Python/
Dimportdl.c121 pathbytes = PyUnicode_EncodeFSDefault(path); in _PyImport_LoadDynamicModuleWithSpec()
Dtraceback.c200 filebytes = PyUnicode_EncodeFSDefault(filename); in _Py_FindSourceFile()
228 path = PyUnicode_EncodeFSDefault(v); in _Py_FindSourceFile()
Dfileutils.c725 PyObject *bytes = PyUnicode_EncodeFSDefault(path); in _Py_stat()
/external/python/cpython3/PC/
Dpython3.def669 PyUnicode_EncodeFSDefault=python36.PyUnicode_EncodeFSDefault
/external/python/cpython3/Doc/c-api/
Dsys.rst109 The :c:func:`PyUnicode_EncodeFSDefault` and
Dunicode.rst793 Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to
818 :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is.
880 .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
/external/python/cpython3/Include/
Dunicodeobject.h1866 PyAPI_FUNC(PyObject*) PyUnicode_EncodeFSDefault(
/external/python/cpython3/Objects/
Dunicodeobject.c3521 PyUnicode_EncodeFSDefault(PyObject *unicode) in PyUnicode_EncodeFSDefault() function
3877 output = PyUnicode_EncodeFSDefault(path); in PyUnicode_FSConverter()
/external/python/cpython3/Misc/
DNEWS6721 - Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and
6723 Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on
DHISTORY8684 locale encoding) in PyUnicode_EncodeFSDefault().
12772 - Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode