Searched refs:PyUnicode_DecodeFSDefault (Results  1 – 25 of 26) sorted by relevance
12
| /external/python/cpython3/Python/ | 
| D | dynload_hpux.c | 39         PyObject *buf_ob = PyUnicode_DecodeFSDefault(buf);  in _PyImport_FindSharedFuncptr() 47         PyObject *pathname_ob = PyUnicode_DecodeFSDefault(pathname);  in _PyImport_FindSharedFuncptr()
  | 
| D | pythonrun.c | 107         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()
  | 
| D | dynload_shlib.c | 117         path = PyUnicode_DecodeFSDefault(pathname);  in _PyImport_FindSharedFuncptr()
  | 
| D | errors.c | 800     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.c | 1226     PyObject *filename = PyUnicode_DecodeFSDefault(filename_str);  in PyErr_WarnExplicit() 1256     PyObject *filename = PyUnicode_DecodeFSDefault(filename_str);  in PyErr_WarnExplicitFormat()
  | 
| D | import.c | 718         cpathobj = PyUnicode_DecodeFSDefault(cpathname);  in PyImport_ExecCodeModuleWithPathnames() 726         pathobj = PyUnicode_DecodeFSDefault(pathname);  in PyImport_ExecCodeModuleWithPathnames()
  | 
| D | fileutils.c | 1496         PyObject *pathname_obj = PyUnicode_DecodeFSDefault(pathname);  in _Py_open_impl()
  | 
| /external/python/cpython3/Modules/ | 
| D | grpmodule.c | 69         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()
  | 
| D | spwdmodule.c | 80       PyObject *o = PyUnicode_DecodeFSDefault(val);  in sets()
  | 
| D | pwdmodule.c | 70       PyObject *o = PyUnicode_DecodeFSDefault(val);  in sets()
  | 
| D | main.c | 402     startup = PyUnicode_DecodeFSDefault(env);  in pymain_run_startup()
  | 
| D | socketmodule.c | 1324             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);
  | 
| D | posixmodule.c | 3091     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.c | 2109     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/ | 
| D | run-func.c | 17     pName = PyUnicode_DecodeFSDefault(argv[1]);  in main()
  | 
| /external/python/cpython3/Include/ | 
| D | unicodeobject.h | 784 PyAPI_FUNC(PyObject*) PyUnicode_DecodeFSDefault(
  | 
| /external/python/cpython3/PC/ | 
| D | python3dll.c | 634 EXPORT_FUNC(PyUnicode_DecodeFSDefault)
  | 
| /external/python/cpython3/Doc/data/ | 
| D | stable_abi.dat | 709 function,PyUnicode_DecodeFSDefault,3.2,
  | 
| D | refcounts.dat | 2843 PyUnicode_DecodeFSDefault:PyObject*::+1: 2844 PyUnicode_DecodeFSDefault:const char*:s::
  | 
| D | python3.10.abi | 770 …<elf-symbol name='PyUnicode_DecodeFSDefault' type='func-type' binding='global-binding' visibility=… 7461 …<function-decl name='PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath=… 11422 …PyUnicode_DecodeFSDefault' mangled-name='PyUnicode_DecodeFSDefault' filepath='Objects/unicodeobjec…
  | 
| /external/python/cpython3/Doc/extending/ | 
| D | embedding.rst | 174    pName = PyUnicode_DecodeFSDefault(argv[1]);
  | 
| /external/python/cpython3/Objects/ | 
| D | codeobject.c | 352     filename_ob = PyUnicode_DecodeFSDefault(filename);  in PyCode_NewEmpty()
  | 
| D | unicodeobject.c | 4087 PyUnicode_DecodeFSDefault(const char *s) {  in PyUnicode_DecodeFSDefault()  function
  | 
| /external/python/cpython3/Misc/ | 
| D | stable_abi.txt | 1392 function PyUnicode_DecodeFSDefault
  | 
| /external/python/cpython3/Doc/c-api/ | 
| D | unicode.rst | 902 .. c:function:: PyObject* PyUnicode_DecodeFSDefault(const char *s)
  | 
        12