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

  /bionic/libc/upstream-openbsd/lib/libc/string/
strncpy.c 1 /* $OpenBSD: strncpy.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
42 strncpy(char *dst, const char *src, size_t n) function
59 DEF_STRONG(strncpy); variable
  /device/google/contexthub/firmware/lib/libc/
strncpy.c 1 /* $OpenBSD: strncpy.c,v 1.7 2014/06/10 04:17:37 deraadt Exp $ */
42 strncpy(char *dst, const char *src, size_t n) function
  /external/syslinux/com32/lib/
strncpy.c 2 * strncpy.c
4 * strncpy()
9 char *strncpy(char *dst, const char *src, size_t n) function
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Copying.c 79 /** The strncpy function copies not more than n characters (characters that
88 @return The strncpy function returns the value of s1.
90 char *strncpy(char * __restrict s1, const char * __restrict s2, size_t n) function
112 strncpyX exists because normal strncpy does not indicate if the copy was
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string3.h 36 # undef strncpy macro
118 __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...]
string.h 836 #define strncpy(dest, src, n) \ macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string3.h 36 # undef strncpy macro
118 __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...]
  /system/chre/apps/chqts/src/shared/
nano_string.cc 56 char *strncpy(char *dest, const char *src, size_t len) { function in namespace:nanoapp_testing
  /external/mesa3d/src/amd/addrlib/inc/
lnx_common_defs.h 122 #define strncpy(_d, _s, _n) __ke_strncpy(_d, _s, _n) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
string.h 49 #undef strncpy macro
132 #define strncpy(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
string.h 49 #undef strncpy macro
132 #define strncpy(dest, src, len) \ macro
  /external/syslinux/gpxe/src/core/
string.c 51 * strncpy - Copy a length-limited, %NUL-terminated string
56 * Note that unlike userspace strncpy, this does not %NUL-pad the buffer.
60 char * strncpy(char * dest,const char *src,size_t count) function
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 63 #define strncpy(_dd,_ss,_sz) VG_(strncpy)((_dd),(_ss),(_sz)) macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 152 #define strncpy(s1,s2,nmax) VG_(strncpy) ((s1),(s2),nmax) macro
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 407 INTERCEPT_LIBRARY_FUNCTION(strncpy); variable
  /external/wpa_supplicant_8/src/utils/
os.h 658 #undef strncpy macro
659 #define strncpy OS_DO_NOT_USE_strncpy macro
  /device/linaro/bootloader/edk2/CryptoPkg/Include/
OpenSslSupport.h 208 char *strncpy (char *, const char *, size_t);
214 char *strncpy (char *, const char *, size_t);
275 #define strncpy(strDest,strSource,count) AsciiStrnCpyS(strDest,MAX_STRING_SIZE,strSource,(UINTN)count) macro
  /external/valgrind/coregrind/
m_libcbase.c 316 HChar* VG_(strncpy) ( HChar* dest, const HChar* src, SizeT ndest ) function
  /external/clang/test/Analysis/
string.c 443 // strncpy()
451 #define strncpy(a,b,n) __strncpy_chk(a,b,n,(size_t)-1) macro
455 #define strncpy BUILTIN(strncpy) macro
456 char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
462 strncpy(NULL, x, 5); // expected-warning{{Null pointer argument in call to string copy function}}
466 strncpy(x, NULL, 5); // expected-warning{{Null pointer argument in call to string copy function}}
470 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}}
476 clang_analyzer_eval(strncpy(x, y, 5) == x); // expected-warning{{TRUE}}
484 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}
    [all...]

Completed in 287 milliseconds