Home
last modified time | relevance | path

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

/external/u-boot/arch/arm/dts/
Dkirkwood-guruplug-server-plus.dts31 pmx_led_wmode_r: pmx-led-wmode-r {
35 pmx_led_wmode_g: pmx-led-wmode-g {
70 wmode-r {
71 label = "guruplug:red:wmode";
74 wmode-g {
75 label = "guruplug:green:wmode";
/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/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.c1307 wchar_t wmode[10]; in _Py_fopen_obj() local
1323 wmode, Py_ARRAY_LENGTH(wmode)); in _Py_fopen_obj()
1331 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()