Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeFSDefaultAndSize (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Modules/
Dnismodule.c116 key = PyUnicode_DecodeFSDefaultAndSize(inkey, inkeylen); in nis_foreach()
117 val = PyUnicode_DecodeFSDefaultAndSize(inval, invallen); in nis_foreach()
192 res = PyUnicode_DecodeFSDefaultAndSize(match, len); in nis_match()
Dposixmodule.c1239 wo = PyUnicode_DecodeFSDefaultAndSize( in path_converter()
4104 v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep)); in _posix_listdir()
8444 return PyUnicode_DecodeFSDefaultAndSize(buffer, length); in os_readlink_impl()
11661 result = PyUnicode_DecodeFSDefaultAndSize(buf, len2-1); in os_confstr_impl()
11665 result = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1); in os_confstr_impl()
12774 PyObject *attribute = PyUnicode_DecodeFSDefaultAndSize(start, in os_listxattr_impl()
13687 entry->name = PyUnicode_DecodeFSDefaultAndSize(name, name_len); in DirEntry_from_posix_info()
/external/python/cpython3/Python/
Dthread.c218 value = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1); in PyThread_GetInfo()
/external/python/cpython3/Include/
Dunicodeobject.h775 PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefaultAndSize(
/external/python/cpython3/PC/
Dpython3.def660 PyUnicode_DecodeFSDefaultAndSize=python39.PyUnicode_DecodeFSDefaultAndSize
/external/python/cpython3/Doc/c-api/
Dunicode.rst798 Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` to decode a string from
885 :class:`str` using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str`
895 .. c:function:: PyObject* PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
924 Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` if you know the string length.
Dsys.rst154 The :c:func:`PyUnicode_DecodeFSDefaultAndSize` and
/external/python/cpython3/Doc/data/
Drefcounts.dat2862 PyUnicode_DecodeFSDefaultAndSize:PyObject*::+1:
2863 PyUnicode_DecodeFSDefaultAndSize:const char*:s::
2864 PyUnicode_DecodeFSDefaultAndSize:Py_ssize_t:size::
/external/python/cpython3/Objects/
Dunicodeobject.c3891 return PyUnicode_DecodeFSDefaultAndSize(s, size); in PyUnicode_DecodeFSDefault()
3895 PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size) in PyUnicode_DecodeFSDefaultAndSize() function
4012 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(path_bytes), in PyUnicode_FSDecoder()
/external/python/cpython3/Misc/
DHISTORY12316 decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize(); str
12790 - PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handler.