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

  /bionic/libc/string/
strncpy.c 1 /* $OpenBSD: strncpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
46 strncpy(char *dst, const char *src, size_t n) function
  /external/kernel-headers/original/asm-mips/
string.h 45 static __inline__ char *strncpy(char *__dest, __const__ char *__src, size_t __n) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 36 # undef strncpy macro
119 __NTH (strncpy (char *__restrict __dest, __const char *__restrict __src, function
string2.h 761 # define strncpy(dest, src, n) __builtin_strncpy (dest, src, n) macro
763 # define strncpy(dest, src, n) \ macro
767 : strncpy (dest, src, n)) \
768 : strncpy (dest, src, n)))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 36 # undef strncpy macro
119 __NTH (strncpy (char *__restrict __dest, __const char *__restrict __src, function
string2.h 761 # define strncpy(dest, src, n) __builtin_strncpy (dest, src, n) macro
763 # define strncpy(dest, src, n) \ macro
767 : strncpy (dest, src, n)) \
768 : strncpy (dest, src, n)))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 36 # undef strncpy macro
119 __NTH (strncpy (char *__restrict __dest, __const char *__restrict __src, function
string2.h 761 # define strncpy(dest, src, n) __builtin_strncpy (dest, src, n) macro
763 # define strncpy(dest, src, n) \ macro
767 : strncpy (dest, src, n)) \
768 : strncpy (dest, src, n)))
    [all...]
  /bionic/libc/include/
string.h 73 extern char* strncpy(char* __restrict, const char* __restrict, size_t);
121 __errordecl(__strncpy_error, "strncpy called with size bigger than buffer");
124 char* strncpy(char* __restrict dest, const char* __restrict src, size_t n) { function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 49 #undef strncpy macro
132 #define strncpy(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 49 #undef strncpy macro
132 #define strncpy(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
string.h 49 #undef strncpy macro
132 #define strncpy(dest, src, len) \ macro
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 63 #define strncpy(_dd,_ss,_sz) VG_(strncpy)((_dd),(_ss),(_sz)) macro
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 141 #define strncpy(s1,s2,nmax) VG_(strncpy) ((Char *)(s1),(Char *)(s2),nmax) macro
  /external/wpa_supplicant_8/src/utils/
os.h 469 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
529 #undef strncpy macro
530 #define strncpy OS_DO_NOT_USE_strncpy macro
  /external/valgrind/main/coregrind/
m_libcbase.c 289 Char* VG_(strncpy) ( Char* dest, const Char* src, SizeT ndest ) function
  /external/clang/test/Analysis/
string.c 442 // strncpy()
450 #define strncpy(a,b,n) __strncpy_chk(a,b,n,(size_t)-1) macro
454 #define strncpy BUILTIN(strncpy) macro
455 char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
461 strncpy(NULL, x, 5); // expected-warning{{Null pointer argument in call to string copy function}}
465 strncpy(x, NULL, 5); // expected-warning{{Null pointer argument in call to string copy function}}
469 strncpy(x, (char*)&strcpy_fn, 5); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}}
475 clang_analyzer_eval(strncpy(x, y, 5) == x); // expected-warning{{TRUE}}
483 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 544 /// char *strncpy(char *s1, const char *s2, size_t n);
545 strncpy, enumerator in enum:llvm::LibFunc::Func

Completed in 782 milliseconds