Symbol: wcslen
include/wchar.h
115
size_t wcslen(const wchar_t *);
lib/libc/gen/vis.c
372
d = dst + wcslen(dst);
lib/libc/gen/vis.c
573
len = wcslen(start);
lib/libc/locale/wcsxfrm.c
52
len = wcslen(s2);
lib/libc/stdio/vfwprintf.c
75
#define STRLEN(a) wcslen(a)
lib/libc/stdio/vswscanf.c
90
mbstr = malloc(wcslen(str) * MB_CUR_MAX_L(loc) + 1);
lib/libc/string/wcscspn.c
53
return wcslen(s);
lib/libc/string/wcsdup.c
36
len = wcslen(str) + 1;
lib/libc/string/wcslcat.c
65
return(dlen + wcslen(s));
lib/libc/string/wcsstr.c
55
if (wcslen(big) < wcslen(little))
lib/libcurses/addwstr.c
151
len = wcslen(s);
lib/libcurses/cchar.c
96
len = wcslen(wch);
lib/libedit/TEST/test_filecompletion.c
532
input_len = wcslen(inputs[i].user_typed_text);
lib/libedit/chared.c
604
if (s == NULL || (len = wcslen(s)) == 0)
lib/libedit/chared.c
679
if (s == NULL || (len = wcslen(s)) == 0)
lib/libedit/chared.c
728
len = (ssize_t)wcslen(prompt);
lib/libedit/hist.c
134
hlen = wcslen(hp) + 1;
lib/libedit/history.c
85
#define Strlen(s) wcslen(s)
lib/libedit/refresh.c
361
(int) wcslen((const wchar_t *)el->el_display[i]));
sys/arch/hpc/stand/hpcboot/console.cpp
116
size_t len = WideCharToMultiByte(CP_ACP, 0, _bufw, wcslen(_bufw),
sys/arch/hpc/stand/hpcboot/file.cpp
66
size_t len = WideCharToMultiByte(CP_ACP, 0, w, wcslen(w), 0, 0, 0, 0);
sys/arch/hpc/stand/hpcboot/hpcmenu.cpp
226
len = WideCharToMultiByte(CP_ACP, 0, w, wcslen(w), 0, 0, 0, 0);
sys/arch/hpc/stand/hpcboot/hpcmenu.cpp
258
len = WideCharToMultiByte(CP_ACP, 0, w, wcslen(w), 0, 0, 0, 0);
sys/arch/hpc/stand/hpcboot/hpcmenu.cpp
286
len = WideCharToMultiByte(CP_ACP, 0, w, wcslen(w), 0, 0, 0, 0);
sys/arch/hpc/stand/hpcboot/menu/menu.cpp
426
size_t sz = (wcslen(buf) + cr + 1) * sizeof(TCHAR);
sys/arch/hpcmips/stand/pbsdboot/preference.c
588
wcslen(unibuf));
sys/arch/hpcmips/stand/pbsdboot/preference.c
601
wcslen(unibuf));
sys/arch/hpcmips/stand/pbsdboot/preference.c
613
wcslen(unibuf));
tests/lib/libc/locale/t_wcstod.c
404
printf("wcslen(\"%S\") = %zu\n", t->wcs, wcslen(t->wcs));
tests/lib/libc/locale/t_wcstod.c
411
ATF_REQUIRE_EQ(strlen(buf), wcslen(t->wcs));