Home
last modified time | relevance | path

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

12

/external/python/cpython3/Python/
Ddynload_hpux.c39 PyObject *buf_ob = PyUnicode_DecodeFSDefault(buf); in _PyImport_FindSharedFuncptr()
47 PyObject *pathname_ob = PyUnicode_DecodeFSDefault(pathname); in _PyImport_FindSharedFuncptr()
Dpythonrun.c107 filename_obj = PyUnicode_DecodeFSDefault(filename); in PyRun_AnyFileExFlags()
180 PyObject *filename_obj = PyUnicode_DecodeFSDefault(filename); in PyRun_InteractiveLoopFlags()
306 filename = PyUnicode_DecodeFSDefault(filename_str); in PyRun_InteractiveOneFlags()
485 PyObject *filename_obj = PyUnicode_DecodeFSDefault(filename); in PyRun_SimpleFileExFlags()
1223 PyObject *filename_obj = PyUnicode_DecodeFSDefault(filename); in PyRun_FileExFlags()
1390 filename = PyUnicode_DecodeFSDefault(filename_str); in Py_CompileStringExFlags()
Ddynload_shlib.c117 path = PyUnicode_DecodeFSDefault(pathname); in _PyImport_FindSharedFuncptr()
Derrors.c800 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetFromErrnoWithFilename()
908 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetExcFromWindowsErrWithFilename()
946 PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; in PyErr_SetFromWindowsErrWithFilename()
1708 fileobj = PyUnicode_DecodeFSDefault(filename); in PyErr_SyntaxLocationEx()
1774 PyObject *filename_obj = PyUnicode_DecodeFSDefault(filename); in PyErr_ProgramText()
D_warnings.c1226 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str); in PyErr_WarnExplicit()
1256 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str); in PyErr_WarnExplicitFormat()
Dimport.c718 cpathobj = PyUnicode_DecodeFSDefault(cpathname); in PyImport_ExecCodeModuleWithPathnames()
726 pathobj = PyUnicode_DecodeFSDefault(pathname); in PyImport_ExecCodeModuleWithPathnames()
Dfileutils.c1496 PyObject *pathname_obj = PyUnicode_DecodeFSDefault(pathname); in _Py_open_impl()
/external/python/cpython3/Modules/
Dgrpmodule.c69 PyObject *x = PyUnicode_DecodeFSDefault(*member); in mkgrent()
80 SET(setIndex++, PyUnicode_DecodeFSDefault(p->gr_name)); in mkgrent()
82 SET(setIndex++, PyUnicode_DecodeFSDefault(p->gr_passwd)); in mkgrent()
Dspwdmodule.c80 PyObject *o = PyUnicode_DecodeFSDefault(val); in sets()
Dpwdmodule.c70 PyObject *o = PyUnicode_DecodeFSDefault(val); in sets()
Dmain.c402 startup = PyUnicode_DecodeFSDefault(env); in pymain_run_startup()
Dsocketmodule.c1324 return PyUnicode_DecodeFSDefault(a->sun_path); in makesockaddr()
1507 return Py_BuildValue("O&kk", PyUnicode_DecodeFSDefault, in makesockaddr()
1516 return Py_BuildValue("O&KIB", PyUnicode_DecodeFSDefault, in makesockaddr()
1525 return Py_BuildValue("(O&)", PyUnicode_DecodeFSDefault, in makesockaddr()
5422 return PyUnicode_DecodeFSDefault(buf);
6764 ni[i].if_index, PyUnicode_DecodeFSDefault, ni[i].if_name);
6833 return PyUnicode_DecodeFSDefault(name);
Dposixmodule.c3091 PyObject *res = PyUnicode_DecodeFSDefault(buffer); in os_ttyname_impl()
3118 return PyUnicode_DecodeFSDefault(buffer); in os_ctermid_impl()
3843 obj = PyUnicode_DecodeFSDefault(buf); in posix_getcwd()
5076 PyObject *o = PyUnicode_DecodeFSDefault(field); \ in os_uname_impl()
7869 result = PyUnicode_DecodeFSDefault(name); in os_getlogin_impl()
13956 entry->path = PyUnicode_DecodeFSDefault(joined_path); in DirEntry_from_posix_info()
D_ssl.c2109 return PyUnicode_DecodeFSDefault(short_name); in _ssl__SSLSocket_compression_impl()
5216 else if ((target = PyUnicode_DecodeFSDefault(tmp)) == NULL) { \ in _ssl_get_default_verify_paths_impl()
/external/python/cpython3/Doc/includes/
Drun-func.c17 pName = PyUnicode_DecodeFSDefault(argv[1]); in main()
/external/python/cpython3/Include/
Dunicodeobject.h784 PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefault(
/external/python/cpython3/PC/
Dpython3dll.c634 EXPORT_FUNC(PyUnicode_DecodeFSDefault)
/external/python/cpython3/Doc/data/
Dstable_abi.dat709 function,PyUnicode_DecodeFSDefault,3.2,
Drefcounts.dat2843 PyUnicode_DecodeFSDefault:PyObject*::+1:
2844 PyUnicode_DecodeFSDefault:const char*:s::
Dpython3.10.abi770 …<elf-symbol name='PyUnicode_DecodeFSDefault' type='func-type' binding='global-binding' visibility=…
7461 …<function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath=…
11422PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='Objects/unicodeobjec…
/external/python/cpython3/Doc/extending/
Dembedding.rst174 pName = PyUnicode_DecodeFSDefault(argv[1]);
/external/python/cpython3/Objects/
Dcodeobject.c352 filename_ob = PyUnicode_DecodeFSDefault(filename); in PyCode_NewEmpty()
Dunicodeobject.c4087 PyUnicode_DecodeFSDefault(const char *s) { in PyUnicode_DecodeFSDefault() function
/external/python/cpython3/Misc/
Dstable_abi.txt1392 function PyUnicode_DecodeFSDefault
/external/python/cpython3/Doc/c-api/
Dunicode.rst902 .. c:function:: PyObject* PyUnicode_DecodeFSDefault(const char *s)

12