Searched refs:utf16_len (Results 1 – 5 of 5) sorted by relevance
/third_party/libuv/src/win/ |
D | util.c | 97 int utf8_len, utf16_buffer_len, utf16_len; in uv_exepath() local 118 utf16_len = GetModuleFileNameW(NULL, utf16_buffer, utf16_buffer_len); in uv_exepath() 119 if (utf16_len <= 0) { in uv_exepath() 125 utf16_buffer[utf16_len] = L'\0'; in uv_exepath() 155 DWORD utf16_len; in uv_cwd() local 163 utf16_len = GetCurrentDirectoryW(0, NULL); in uv_cwd() 164 if (utf16_len == 0) { in uv_cwd() 167 utf16_buffer = uv__malloc(utf16_len * sizeof(WCHAR)); in uv_cwd() 172 utf16_len = GetCurrentDirectoryW(utf16_len, utf16_buffer); in uv_cwd() 173 if (utf16_len == 0) { in uv_cwd() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | ConvertUTF.h | 295 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len, 298 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | WindowsSupport.h | 255 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len, 258 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len,
|
D | Path.inc | 943 size_t utf16_len, 945 if (utf16_len) { 947 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.begin(), 957 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, utf8.data(), 971 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len, 973 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8); 976 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len, 978 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, utf8);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 1456 size_t utf16_len, 1458 if (utf16_len) { 1460 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, converted.begin(), 1471 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, converted.data(), 1486 std::error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len, 1488 return UTF16ToCodePage(CP_UTF8, utf16, utf16_len, utf8); 1491 std::error_code UTF16ToCurCP(const wchar_t *utf16, size_t utf16_len, 1493 return UTF16ToCodePage(CP_ACP, utf16, utf16_len, curcp);
|