Home
last modified time | relevance | path

Searched refs:PyUnicode_FSDecoder (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/python/cpython3/Modules/clinic/
Dsymtablemodule.c.h30 if (!PyUnicode_FSDecoder(args[1], &filename)) { in _symtable_symtable()
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dwinconsoleio.c77 if (!PyUnicode_FSDecoder(path_or_fd, &decoded)) { in _PyIO_get_console_type()
288 int d = PyUnicode_FSDecoder(nameobj, (void*)&decodedname); in _io__WindowsConsoleIO___init___impl()
Dfileio.c268 if (!PyUnicode_FSDecoder(nameobj, &stringobj)) {
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h769 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h769 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h769 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h769 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h769 PyAPI_FUNC(int) PyUnicode_FSDecoder(PyObject*, void*);
/aosp_15_r20/external/python/cpython3/Python/clinic/
Dbltinmodule.c.h273 if (!PyUnicode_FSDecoder(args[1], &filename)) { in builtin_compile()
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.6.0a3.rst427 PyUnicode_FSDecoder() accepted a filename argument encoded as an iterable of
D3.6.0b1.rst1343 PyUnicode_FSDecoder().
D3.5.3rc1.rst1806 PyUnicode_FSDecoder() accepted a filename argument encoded as an iterable of
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2772 PyUnicode_FSDecoder:int:::
2773 PyUnicode_FSDecoder:PyObject*:obj:0:
2774 PyUnicode_FSDecoder:void*:result::
Dstable_abi.dat750 function,PyUnicode_FSDecoder,3.2,,
Dpython3.11.abi808 …<elf-symbol name='PyUnicode_FSDecoder' type='func-type' binding='global-binding' visibility='defau…
10740PyUnicode_FSDecoder' mangled-name='PyUnicode_FSDecoder' filepath='Objects/unicodeobject.c' line='4…
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c679 EXPORT_FUNC(PyUnicode_FSDecoder)
/aosp_15_r20/external/python/cpython3/Modules/
Dposixmodule.c5667 if (!PyUnicode_FSDecoder(o, &ub)) in fsconvert_strdup()
5725 if (!PyUnicode_FSDecoder(key, &key2)) in parse_envlist()
5727 if (!PyUnicode_FSDecoder(val, &val2)) { in parse_envlist()
13637 if (!PyUnicode_FSDecoder(self->path, &ub)) in DirEntry_fetch_stat()
13876 if (!PyUnicode_FSDecoder(self->path, &unicode)) in os_DirEntry_inode_impl()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst861 converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the
864 .. c:function:: int PyUnicode_FSDecoder(PyObject* obj, void* result)
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1508 [function.PyUnicode_FSDecoder]
DHISTORY12315 - Issue #9542: Create PyUnicode_FSDecoder() function, a ParseTuple converter:
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.6.rst1905 * The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c4099 PyUnicode_FSDecoder(PyObject* arg, void* addr) in PyUnicode_FSDecoder() function