HomeSort by relevance Sort by last modified time
    Searched defs:strncat (Results 1 - 8 of 8) sorted by null

  /bionic/libc/string/
strncat.c 1 /* $OpenBSD: strncat.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
41 strncat(char *dst, const char *src, size_t n) function
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 35 # undef strncat macro
150 __NTH (strncat (char *__restrict __dest, __const char *__restrict __src, function
string2.h 776 # define strncat(dest, src, n) \ macro
783 : strncat (dest, src, n); }))
785 # define strncat(dest, src, n) __builtin_strncat (dest, src, n) macro
787 # define strncat(dest, src, n) \ macro
791 : strncat (dest, src, n)) \
792 : strncat (dest, src, n)))
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 48 #undef strncat macro
155 #define strncat(dest, src, len) \ macro
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 61 #define strncat(_dd,_ss,_nn) VG_(strncat)((_dd),(_ss),(_nn)) macro
  /external/valgrind/main/coregrind/
m_libcbase.c 187 Char* VG_(strncat) ( Char* dest, const Char* src, SizeT n ) function
  /external/clang/test/Analysis/
string.c 558 // strncat()
566 #define strncat(a,b,c) __strncat_chk(a,b,c, (size_t)-1) macro
570 #define strncat BUILTIN(strncat) macro
571 char *strncat(char *restrict s1, const char *restrict s2, size_t n);
577 strncat(NULL, x, 4); // expected-warning{{Null pointer argument in call to string copy function}}
581 strncat(x, NULL, 4); // expected-warning{{Null pointer argument in call to string copy function}}
585 strncat(x, (char*)&strncat_fn, 4); // expected-warning{{Argument to string copy function is the address of the function 'strncat_fn', which is not a null-terminated string}}
596 if (strncat(x, y, strlen(y)) != x)
606 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destina (…)
    [all...]
  /external/grub/stage2/
shared.h 367 #define strncat grub_strncat macro

Completed in 115 milliseconds