HomeSort by relevance Sort by last modified time
    Searched refs:__strncat_chk (Results 1 - 4 of 4) sorted by null

  /bionic/libc/bionic/
__strncat_chk.cpp 44 extern "C" char* __strncat_chk(char* __restrict dest, const char* __restrict src, function
  /bionic/tests/
fortify_test.cpp 721 extern "C" char* __strncat_chk(char*, const char*, size_t, size_t);
729 char* res = __strncat_chk(buf, "01234", sizeof(buf) - strlen(buf) - 1, sizeof(buf));
748 char* res = __strncat_chk(buf, "0123456789", 5, sizeof(buf));
766 char* res = __strncat_chk(buf, "0123456789", 5, sizeof(buf));
784 char* res = __strncat_chk(buf, "", 5, sizeof(buf));
803 char* res = __strncat_chk(buf, "01234567", 8, sizeof(buf));
822 char* res = __strncat_chk(buf, "01234567", 9, sizeof(buf));
  /external/clang/test/Analysis/
string.c 540 #define __strncat_chk BUILTIN(__strncat_chk) macro
541 char *__strncat_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen);
543 #define strncat(a,b,c) __strncat_chk(a,b,c, (size_t)-1)
  /bionic/libc/
Android.mk 79 bionic/__strncat_chk.cpp \
    [all...]

Completed in 2813 milliseconds