Home
last modified time | relevance | path

Searched refs:wmode (Results 1 – 6 of 6) sorted by relevance

/external/flac/src/libFLAC/
Dwindows_unicode_filenames.c84 wchar_t *wmode = NULL; in flac_internal_fopen_utf8() local
89 if (!(wmode = wchar_from_utf8(mode))) break; in flac_internal_fopen_utf8()
90 f = _wfopen(wname, wmode); in flac_internal_fopen_utf8()
94 free(wmode); in flac_internal_fopen_utf8()
/external/llvm-project/lldb/source/Host/windows/
DFileSystem.cpp90 std::wstring wpath, wmode; in Fopen() local
93 if (!llvm::ConvertUTF8toWide(mode, wmode)) in Fopen()
96 if (_wfopen_s(&file, wpath.c_str(), wmode.c_str()) != 0) in Fopen()
/external/protobuf/src/google/protobuf/io/
Dio_win32.cc328 wstring wmode; in fopen() local
329 if (!strings::utf8_to_wcs(mode, &wmode)) { in fopen()
333 return ::_wfopen(wpath.c_str(), wmode.c_str()); in fopen()
/external/python/cpython2/Tools/scripts/
Dtreesync.py176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask'): argument
182 g = open(dst, wmode)
/external/python/cpython3/Python/
Dfileutils.c1437 wchar_t wmode[10]; in _Py_fopen_obj() local
1456 wmode, Py_ARRAY_LENGTH(wmode)); in _Py_fopen_obj()
1464 f = _wfopen(wpath, wmode); in _Py_fopen_obj()
/external/python/cpython2/Objects/
Dfileobject.c364 PyObject *wmode; in open_the_file() local
365 wmode = PyUnicode_DecodeASCII(newmode, strlen(newmode), NULL); in open_the_file()
366 if (f->f_name && wmode) { in open_the_file()
371 PyUnicode_AS_UNICODE(wmode)); in open_the_file()
374 Py_XDECREF(wmode); in open_the_file()