Searched refs:dst_buf_size (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/bionic/ |
D | fortify.cpp | 277 extern "C" void __strcat_chk_fail(size_t dst_buf_size) { in __strcat_chk_fail() argument 278 __fortify_fatal("strcat: prevented write past end of %zu-byte buffer", dst_buf_size); in __strcat_chk_fail() 297 extern "C" void __strcpy_chk_fail(size_t dst_buf_size) { in __strcpy_chk_fail() argument 298 __fortify_fatal("strcpy: prevented write past end of %zu-byte buffer", dst_buf_size); in __strcpy_chk_fail() 325 extern "C" char* __strncat_chk(char* dst, const char* src, size_t len, size_t dst_buf_size) { in __strncat_chk() argument 330 size_t dst_len = __strlen_chk(dst, dst_buf_size); in __strncat_chk() 332 dst_buf_size -= dst_len; in __strncat_chk() 336 len--; dst_buf_size--; in __strncat_chk() 338 if (__predict_false(dst_buf_size == 0)) { in __strncat_chk() 461 extern "C" char* __STRCAT_CHK(char* dst, const char* src, size_t dst_buf_size) { in __STRCAT_CHK() argument [all …]
|
/bionic/libc/arch-arm/ |
D | dynamic_function_dispatch.cpp | 258 typedef char* __strcat_chk_func(char* dst, const char* src, size_t dst_buf_size);
|