Searched refs:utf16_len (Results 1 – 3 of 3) sorted by relevance
/libuv/src/win/ |
H A D | util.c | 98 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 < 2 || utf16_buffer[1] != L':') { in uv_chdir()
|
/libuv/docs/src/ |
H A D | misc.rst | 891 .. c:function:: size_t uv_utf16_length_as_wtf8(const uint16_t* utf16, ssize_t utf16_len) 894 WTF-8. If `utf16` is NUL terminated, `utf16_len` can be set to -1, 899 .. c:function:: int uv_utf16_to_wtf8(const uint16_t* utf16, ssize_t utf16_len, char** wtf8_ptr, siz… 902 `utf16_len` count (in characters) gives the length of `utf16`. If `utf16` 903 is NUL terminated, `utf16_len` can be set to -1, otherwise it must be 923 .. c:function:: void uv_wtf8_to_utf16(const char* utf8, uint16_t* utf16, size_t utf16_len) 926 in `utf16`. The `utf16_len` count (in characters) must include space
|
/libuv/include/ |
H A D | uv.h | 1937 ssize_t utf16_len); 1939 ssize_t utf16_len, 1945 size_t utf16_len);
|
Completed in 31 milliseconds