Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/base/
Dwin32.cc382 wchar_t* wfilename = STACK_ARRAY(wchar_t, wlen); in Utf8ToWindowsFilename() local
385 wfilename, wlen)) { in Utf8ToWindowsFilename()
389 std::replace(wfilename, wfilename + wlen, L'/', L'\\'); in Utf8ToWindowsFilename()
391 DWORD full_len = ::GetFullPathName(wfilename, 0, NULL, NULL); in Utf8ToWindowsFilename()
398 if (0 == ::GetFullPathName(wfilename, full_len, start, &filepart)) { in Utf8ToWindowsFilename()
Dstream.cc327 std::wstring wfilename; in Open() local
328 if (Utf8ToWindowsFilename(filename, &wfilename)) { in Open()
329 file_ = _wfopen(wfilename.c_str(), ToUtf16(mode).c_str()); in Open()
349 std::wstring wfilename; in OpenShare() local
350 if (Utf8ToWindowsFilename(filename, &wfilename)) { in OpenShare()
351 file_ = _wfsopen(wfilename.c_str(), ToUtf16(mode).c_str(), shflag); in OpenShare()
/external/chromium_org/third_party/boringssl/src/crypto/bio/
Dfile.c107 WCHAR *wfilename = _alloca(sz * sizeof(WCHAR)); in open_file() local
109 if (MultiByteToWideChar(CP_UTF8, flags, filename, len_0, wfilename, sz) && in open_file()
112 (file = _wfopen(wfilename, wmode)) == NULL && in open_file()
/external/openssl/crypto/bio/
Dbss_file.c148 WCHAR *wfilename = _alloca(sz*sizeof(WCHAR)); in BIO_new_file() local
151 filename,len_0,wfilename,sz) && in BIO_new_file()
154 (file=_wfopen(wfilename,wmode))==NULL && in BIO_new_file()