Home
last modified time | relevance | path

Searched refs:utf8path (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/src/ports/
DSkOSFile_stdio.cpp40 static FILE* fopen_win(const char* utf8path, const char* perm) { in fopen_win() argument
41 if (is_ascii(utf8path)) { in fopen_win()
42 return fopen(utf8path, perm); in fopen_win()
45 const char* ptr = utf8path; in fopen_win()
46 const char* end = utf8path + strlen(utf8path); in fopen_win()
57 ptr = utf8path; in fopen_win()
/third_party/python/Include/cpython/
Dfileobject.h14 PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path);
/third_party/python/Objects/
Dfileobject.c562 PyFile_OpenCode(const char *utf8path) in PyFile_OpenCode() argument
564 PyObject *pathobj = PyUnicode_FromString(utf8path); in PyFile_OpenCode()
/third_party/libsnd/src/
Dsndfile.c355 char utf8path [SF_FILENAME_LEN] ; in sf_open() local
404 nResult = WideCharToMultiByte (CP_UTF8, 0, wpath, wpath_len, utf8path, in sf_open()
419 utf8path_ptr = utf8path ; in sf_open()