Searched refs:utf8path (Results 1 – 7 of 7) sorted by relevance
36 static FILE* fopen_win(const char* utf8path, const char* perm) { in fopen_win() argument37 if (is_ascii(utf8path)) { in fopen_win()38 return fopen(utf8path, perm); in fopen_win()41 const char* ptr = utf8path; in fopen_win()42 const char* end = utf8path + strlen(utf8path); in fopen_win()53 ptr = utf8path; in fopen_win()
525 PyFile_OpenCode(const char *utf8path) in PyFile_OpenCode() argument527 PyObject *pathobj = PyUnicode_FromString(utf8path); in PyFile_OpenCode()
15 PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path);