Searched defs:strncpy (Results 1 - 9 of 9) sorted by relevance

/external/kernel-headers/original/asm-mips/
H A Dstring.h45 static __inline__ char *strncpy(char *__dest, __const__ char *__src, size_t __n) function
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h63 #define strncpy(_dd,_ss,_sz) VG_(strncpy)((_dd),(_ss),(_sz)) macro
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h141 #define strncpy(s1,s2,nmax) VG_(strncpy) ((Char *)(s1),(Char *)(s2),nmax) macro
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h469 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
529 #undef strncpy macro
530 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h469 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
529 #undef strncpy macro
530 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h469 #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/
H A Dm_libcbase.c289 Char* VG_(strncpy) ( Char* dest, const Char* src, SizeT ndest ) function
/external/clang/test/Analysis/
H A Dstring.c442 // 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(
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h544 /// char *strncpy(char *s1, const char *s2, size_t n);
545 strncpy, enumerator in enum:llvm::LibFunc::Func

Completed in 357 milliseconds