Home
last modified time | relevance | path

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

/external/flac/libFLAC/
Dwindows_unicode_filenames.c81 wchar_t *wmode = NULL; in flac_internal_fopen_utf8() local
86 if (!(wmode = wchar_from_utf8(mode))) break; in flac_internal_fopen_utf8()
87 f = _wfopen(wname, wmode); in flac_internal_fopen_utf8()
91 free(wmode); in flac_internal_fopen_utf8()
/external/python/cpython3/Tools/scripts/
Dtreesync.py176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask'): argument
182 g = open(dst, wmode)
/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.c1084 wchar_t wmode[10]; in _Py_fopen_obj() local
1101 usize = MultiByteToWideChar(CP_ACP, 0, mode, -1, wmode, sizeof(wmode)); in _Py_fopen_obj()
1109 f = _wfopen(wpath, wmode); in _Py_fopen_obj()
/external/python/cpython2/Objects/
Dfileobject.c359 PyObject *wmode; in open_the_file() local
360 wmode = PyUnicode_DecodeASCII(newmode, strlen(newmode), NULL); in open_the_file()
361 if (f->f_name && wmode) { in open_the_file()
366 PyUnicode_AS_UNICODE(wmode)); in open_the_file()
369 Py_XDECREF(wmode); in open_the_file()