Searched refs:strlcat (Results 1 - 15 of 15) sorted by relevance
/bionic/libc/arch-x86_64/string/ |
H A D | sse2-strlcat-slm.S | 34 # define STRLCPY strlcat
|
/bionic/libc/bionic/ |
H A D | __strlcat_chk.cpp | 36 * __strlcat_chk. Called in place of strlcat() when we know the 44 * This strlcat check is called if _FORTIFY_SOURCE is defined and 50 __fortify_chk_fail("strlcat: prevented write past end of buffer", 0); 53 return strlcat(dest, src, supplied_size);
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
H A D | strlcat.c | 1 /* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */ 30 strlcat(char *dst, const char *src, size_t siz) function
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | realpath.c | 157 resolved_len = strlcat(resolved, next_token, PATH_MAX); 210 left_len = strlcat(symlink, left,
|
/bionic/libc/include/ |
H A D | string.h | 94 extern size_t strlcat(char* __restrict, const char* __restrict, size_t); 135 extern size_t __strlcat_real(char* __restrict, const char* __restrict, size_t) __RENAME(strlcat); variable 281 size_t strlcat(char* __restrict dest, const char* __restrict src, size_t size) { function
|
/bionic/libc/arch-arm64/ |
H A D | arm64.mk | 26 upstream-openbsd/lib/libc/string/strlcat.c \
|
/bionic/libc/arch-mips/ |
H A D | mips.mk | 38 upstream-openbsd/lib/libc/string/strlcat.c \
|
/bionic/libc/arch-mips64/ |
H A D | mips64.mk | 39 upstream-openbsd/lib/libc/string/strlcat.c \
|
/bionic/libc/arch-x86_64/ |
H A D | x86_64.mk | 55 arch-x86_64/string/sse2-strlcat-slm.S \
|
/bionic/linker/ |
H A D | dlfcn.cpp | 48 strlcat(buffer, ": ", __BIONIC_DLERROR_BUFFER_SIZE); 49 strlcat(buffer, detail, __BIONIC_DLERROR_BUFFER_SIZE);
|
/bionic/libc/arch-arm/ |
H A D | arm.mk | 26 upstream-openbsd/lib/libc/string/strlcat.c \
|
/bionic/tests/ |
H A D | string_test.cpp | 539 TEST(string, strlcat) { 558 strlcat(state.ptr2, state.ptr1, state.MAX_LEN + state.len[i]); 564 GTEST_LOG_(INFO) << "Skipping test, strlcat not supported on this platform."; 1228 ASSERT_EQ(len-1, strlcat(reinterpret_cast<char*>(dst), 1235 ASSERT_EQ(len-1, strlcat(reinterpret_cast<char*>(dst), 1247 GTEST_LOG_(INFO) << "Skipping test, strlcat not supported on this platform."; 1255 GTEST_LOG_(INFO) << "Skipping test, strlcat not supported on this platform.";
|
H A D | fortify_test.cpp | 280 ASSERT_FORTIFY(strlcat(myfoo.one, myfoo.a, n)); 449 ASSERT_FORTIFY(strlcat(bufb, bufa, n));
|
/bionic/libc/arch-x86/atom/string/ |
H A D | ssse3-strlcat-atom.S | 31 /* Optimized strlcat with SSSE3 */ 85 ENTRY (strlcat) function 1225 END (strlcat)
|
/bionic/libc/dns/net/ |
H A D | gethnamaddr.c | 1273 if (strlcat(qbuf, "ip6.arpa", sizeof(qbuf)) >= sizeof(qbuf)) {
|
Completed in 183 milliseconds