Searched refs:wmode (Results 1 – 5 of 5) sorted by relevance
/external/flac/libFLAC/ |
D | windows_unicode_filenames.c | 81 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/ |
D | treesync.py | 176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask'): argument 182 g = open(dst, wmode)
|
/external/python/cpython2/Tools/scripts/ |
D | treesync.py | 176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask'): argument 182 g = open(dst, wmode)
|
/external/python/cpython3/Python/ |
D | fileutils.c | 1084 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/ |
D | fileobject.c | 359 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()
|