Searched refs:strlen (Results 1 - 25 of 82) sorted by relevance

1234

/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrlen.c1 /* $OpenBSD: strlen.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */
35 strlen(const char *str) function
H A Dstrdup.c44 siz = strlen(str) + 1;
H A Dstrstr.c46 len = strlen(find);
H A Dstrlcat.c25 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
26 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
44 return(dlen + strlen(s));
/bionic/libc/private/
H A Dbionic_string_utils.h23 size_t s1_length = strlen(s1);
24 size_t s2_length = strlen(s2);
/bionic/libc/bionic/
H A D__strlen_chk.cpp43 * This strlen check is called if _FORTIFY_SOURCE is defined and
51 * size_t len = strlen(buf); // segfault here with _FORTIFY_SOURCE
56 * or anytime strlen reads beyond an object boundary.
59 size_t ret = strlen(s);
62 __fortify_chk_fail("strlen: prevented read past end of buffer", 0);
H A D__stpcpy_chk.cpp48 size_t src_len = strlen(src) + 1;
H A D__strcpy_chk.cpp48 size_t src_len = strlen(src) + 1;
H A Dgethostname.c41 int namelen = strlen(name.nodename);
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dperror.c49 v->iov_len = strlen(s);
57 v->iov_len = strlen(v->iov_base);
H A Dfputs.c50 iov.iov_len = uio.uio_resid = strlen(s);
H A Dputs.c45 size_t c = strlen(s);
H A Dvsscanf.c55 f._bf._size = f._r = strlen(str);
H A Dtempnam.c58 f[strlen(f) - 1] == '/' ? "" : "/", pfx);
70 f[strlen(f) - 1] == '/' ? "" : "/", pfx);
/bionic/tests/
H A Dgetcwd_test.cpp29 ASSERT_GE(strlen(cwd), 1U);
39 ASSERT_GE(strlen(cwd), 1U);
83 ASSERT_GE(strlen(cwd), 1U);
/bionic/libc/dns/nameser/
H A Dns_samedomain.c60 la = strlen(a);
61 lb = strlen(b);
171 size_t n = strlen(src);
/bionic/libc/arch-arm/generic/bionic/
H A Dstrlen.c32 size_t strlen(const char *s) function
/bionic/libc/upstream-netbsd/lib/libc/string/
H A Dstrcasestr.c59 len = strlen(find);
H A Dstrxfrm.c62 srclen = strlen(src);
/bionic/libc/dns/resolv/
H A Dherror.c105 v->iov_len = strlen(t);
114 v->iov_len = strlen(v->iov_base);
/bionic/libc/tzcode/
H A Dasctime.c107 ((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
112 if (strlen(result) < STD_ASCTIME_BUF_SIZE || buf == buf_asctime)
/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dpsignal.c67 v->iov_len = strlen(s);
74 v->iov_len = strlen(v->iov_base);
/bionic/libstdc++/include/
H A Dcstring56 using ::strlen;
/bionic/libc/arch-mips/string/
H A Dmips_strlen.c47 #define strlen my_strlen macro
51 strlen (const void *_a) function
79 #error strlen: mips64 check for 4-byte alignment not implemented.
174 argv[0] ? argv[0] : "unknown strlen");
177 int b = (strlen)(__x + __y) /* library version */;\
/bionic/libc/arch-mips64/string/
H A Dmips_strlen.c48 #define strlen my_strlen macro
52 strlen (const char *_a) function
80 #error strlen: mips64 check for 4-byte alignment not implemented.
175 argv[0] ? argv[0] : "unknown strlen");
178 int b = (strlen)(__x + __y) /* library version */;\

Completed in 270 milliseconds

1234