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

/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h63 #define strncpy(_dd,_ss,_sz) VG_(strncpy)((_dd),(_ss),(_sz)) macro
/external/wpa_supplicant/
H A Dos.h439 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
478 #undef strncpy macro
479 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dos.h439 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
491 #undef strncpy macro
492 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h446 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
498 #undef strncpy macro
499 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h446 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
498 #undef strncpy macro
499 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h446 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
498 #undef strncpy macro
499 #define strncpy OS_DO_NOT_USE_strncpy macro
/external/valgrind/main/coregrind/
H A Dm_libcbase.c231 Char* VG_(strncpy) ( Char* dest, const Char* src, SizeT ndest ) function
/external/clang/test/Analysis/
H A Dstring.c459 // strncpy()
467 #define strncpy(a,b,n) __strncpy_chk(a,b,n,(size_t)-1) macro
471 #define strncpy BUILTIN(strncpy) macro
472 char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
478 strncpy(NULL, x, 5); // expected-warning{{Null pointer argument in call to string copy function}}
482 strncpy(x, NULL, 5); // expected-warning{{Null pointer argument in call to string copy function}}
486 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}}
492 if (strncpy(x, y, 5) != x)
505 strncpy(
[all...]

Completed in 228 milliseconds