Home
last modified time | relevance | path

Searched refs:dst_buf_size (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dfortify.cpp280 extern "C" void __strcat_chk_fail(size_t dst_buf_size) { in __strcat_chk_fail() argument
281 __fortify_fatal("strcat: prevented write past end of %zu-byte buffer", dst_buf_size); in __strcat_chk_fail()
300 extern "C" void __strcpy_chk_fail(size_t dst_buf_size) { in __strcpy_chk_fail() argument
301 __fortify_fatal("strcpy: prevented write past end of %zu-byte buffer", dst_buf_size); in __strcpy_chk_fail()
328 extern "C" char* __strncat_chk(char* dst, const char* src, size_t len, size_t dst_buf_size) { in __strncat_chk() argument
333 size_t dst_len = __strlen_chk(dst, dst_buf_size); in __strncat_chk()
335 dst_buf_size -= dst_len; in __strncat_chk()
339 len--; dst_buf_size--; in __strncat_chk()
341 if (__predict_false(dst_buf_size == 0)) { in __strncat_chk()
464 extern "C" char* __STRCAT_CHK(char* dst, const char* src, size_t dst_buf_size) { in __STRCAT_CHK() argument
[all …]
/bionic/libc/arch-arm/
Ddynamic_function_dispatch.cpp258 typedef char* __strcat_chk_func(char* dst, const char* src, size_t dst_buf_size);