Home
last modified time | relevance | path

Searched refs:utf16_len (Results 1 - 5 of 5) sorted by relevance

/third_party/node/deps/uv/src/win/
H A Dutil.c97 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()
124 /* utf16_len contains the length, *not* including the terminating null. */ 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 in uv_cwd()
229 size_t utf16_len, new_utf16_len; uv_chdir() local
[all...]
/third_party/libuv/src/win/
H A Dutil.c98 size_t utf8_len, utf16_buffer_len, utf16_len; in uv_exepath() local
119 utf16_len = GetModuleFileNameW(NULL, utf16_buffer, utf16_buffer_len); in uv_exepath()
120 if (utf16_len <= 0) { in uv_exepath()
127 err = uv_utf16_to_wtf8(utf16_buffer, utf16_len, &buffer, &utf8_len); in uv_exepath()
190 DWORD utf16_len; in uv_cwd() local
198 r = uv__cwd(&utf16_buffer, &utf16_len); in uv_cwd()
202 r = uv__copy_utf16_to_utf8(utf16_buffer, utf16_len, buffer, size); in uv_cwd()
212 DWORD utf16_len; in uv_chdir() local
233 r = uv__cwd(&utf16_buffer, &utf16_len); in uv_chdir()
244 if (utf16_len < in uv_chdir()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DConvertUTF.h295 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/
H A DWindowsSupport.h255 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,
/third_party/libuv/include/
H A Duv.h1960 ssize_t utf16_len);
1962 ssize_t utf16_len,
1968 size_t utf16_len);

Completed in 6 milliseconds