Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeFSDefault (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython3/Modules/
Dgrpmodule.c55 PyObject *x = PyUnicode_DecodeFSDefault(*member); in mkgrent()
66 SET(setIndex++, PyUnicode_DecodeFSDefault(p->gr_name)); in mkgrent()
68 SET(setIndex++, PyUnicode_DecodeFSDefault(p->gr_passwd)); in mkgrent()
Dspwdmodule.c70 PyObject *o = PyUnicode_DecodeFSDefault(val); in sets()
Dpwdmodule.c57 PyObject *o = PyUnicode_DecodeFSDefault(val); in sets()
Dsocketmodule.c1291 return PyUnicode_DecodeFSDefault(a->sun_path); in makesockaddr()
1461 return Py_BuildValue("O&kk", PyUnicode_DecodeFSDefault, in makesockaddr()
1469 return Py_BuildValue("O&", PyUnicode_DecodeFSDefault, in makesockaddr()
5189 return PyUnicode_DecodeFSDefault(buf);
5267 return PyUnicode_DecodeFSDefault(name);
6488 ni[i].if_index, PyUnicode_DecodeFSDefault, ni[i].if_name);
6549 return PyUnicode_DecodeFSDefault(name);
Dposixmodule.c2683 return PyUnicode_DecodeFSDefault(buffer); in os_ctermid_impl()
3336 obj = PyUnicode_DecodeFSDefault(buf); in posix_getcwd()
4413 PyObject *o = PyUnicode_DecodeFSDefault(field); \ in os_uname_impl()
6521 result = PyUnicode_DecodeFSDefault(name); in os_getlogin_impl()
12092 entry->path = PyUnicode_DecodeFSDefault(joined_path); in DirEntry_from_posix_info()
D_ssl.c2070 return PyUnicode_DecodeFSDefault(short_name); in _ssl__SSLSocket_compression_impl()
5225 else if ((target = PyUnicode_DecodeFSDefault(tmp)) == NULL) { \ in _ssl_get_default_verify_paths_impl()
/external/python/cpython3/Python/
Dpythonrun.c98 filename = PyUnicode_DecodeFSDefault(filename_str); in PyRun_InteractiveLoopFlags()
285 filename = PyUnicode_DecodeFSDefault(filename_str); in PyRun_InteractiveOneFlags()
344 filename_obj = PyUnicode_DecodeFSDefault(filename); in set_main_loader()
388 f = PyUnicode_DecodeFSDefault(filename); in PyRun_SimpleFileExFlags()
973 filename = PyUnicode_DecodeFSDefault(filename_str); in PyRun_FileExFlags()
1112 filename = PyUnicode_DecodeFSDefault(filename_str); in Py_CompileStringExFlags()
1157 filename = PyUnicode_DecodeFSDefault(filename_str); in Py_SymtableString()
1201 filename = PyUnicode_DecodeFSDefault(filename_str); in PyParser_ASTFromString()
1250 filename = PyUnicode_DecodeFSDefault(filename_str); in PyParser_ASTFromFile()
Derrors.c587 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetFromErrnoWithFilename()
690 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetExcFromWindowsErrWithFilename()
728 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetFromWindowsErrWithFilename()
1113 fileobj = PyUnicode_DecodeFSDefault(filename); in PyErr_SyntaxLocationEx()
Dfuture.c156 filename = PyUnicode_DecodeFSDefault(filename_str); in PyFuture_FromAST()
D_warnings.c1103 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str); in PyErr_WarnExplicit()
1133 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str); in PyErr_WarnExplicitFormat()
Dimport.c878 cpathobj = PyUnicode_DecodeFSDefault(cpathname); in PyImport_ExecCodeModuleWithPathnames()
886 pathobj = PyUnicode_DecodeFSDefault(pathname); in PyImport_ExecCodeModuleWithPathnames()
Dsymtable.c333 filename = PyUnicode_DecodeFSDefault(filename_str); in PySymtable_Build()
Dast.c884 filename = PyUnicode_DecodeFSDefault(filename_str); in PyAST_FromNode()
Dcompile.c363 filename = PyUnicode_DecodeFSDefault(filename_str); in PyAST_CompileEx()
/external/python/cpython3/Doc/includes/
Drun-func.c16 pName = PyUnicode_DecodeFSDefault(argv[1]); in main()
/external/python/cpython3/Parser/
Dparsetok.c79 filename = PyUnicode_DecodeFSDefault(filename_str); in PyParser_ParseStringFlagsFilenameEx()
147 fileobj = PyUnicode_DecodeFSDefault(filename); in PyParser_ParseFileFlagsEx()
/external/python/cpython3/PC/
Dpython3.def659 PyUnicode_DecodeFSDefault=python37.PyUnicode_DecodeFSDefault
/external/python/cpython3/Objects/
Dcodeobject.c245 filename_ob = PyUnicode_DecodeFSDefault(filename); in PyCode_NewEmpty()
Dunicodeobject.c3664 PyUnicode_DecodeFSDefault(const char *s) { in PyUnicode_DecodeFSDefault() function
/external/python/cpython3/Include/
Dunicodeobject.h1836 PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefault(
/external/python/cpython3/Doc/extending/
Dembedding.rst173 pName = PyUnicode_DecodeFSDefault(argv[1]);
/external/python/cpython3/Doc/data/
Drefcounts.dat2825 PyUnicode_DecodeFSDefault:PyObject*::+1:
2826 PyUnicode_DecodeFSDefault:const char*:s::
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h196 return_value = PyUnicode_DecodeFSDefault(_return_value); in os_ttyname()
/external/python/cpython3/Doc/c-api/
Dunicode.rst888 .. c:function:: PyObject* PyUnicode_DecodeFSDefault(const char *s)
/external/python/cpython3/Misc/
DHISTORY12784 - PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of
17100 `PyUnicode_DecodeFSDefault(char*)` was added.