Lines Matching refs:q
82 extern void *__underlying_memmove(void *p, const void *q, __kernel_size_t size) __RENAME(memmove);
83 extern void *__underlying_memcpy(void *p, const void *q, __kernel_size_t size) __RENAME(memcpy);
86 extern void *__underlying_memmove(void *p, const void *q, __kernel_size_t size) __RENAME(__asan_mem…
87 extern void *__underlying_memcpy(void *p, const void *q, __kernel_size_t size) __RENAME(__asan_memc…
90 extern void *__underlying_memmove(void *p, const void *q, __kernel_size_t size) __RENAME(__hwasan_m…
91 extern void *__underlying_memcpy(void *p, const void *q, __kernel_size_t size) __RENAME(__hwasan_me…
95 extern int __underlying_memcmp(const void *p, const void *q, __kernel_size_t size) __RENAME(memcmp);
96 extern char *__underlying_strcat(char *p, const char *q) __RENAME(strcat);
97 extern char *__underlying_strcpy(char *p, const char *q) __RENAME(strcpy);
99 extern char *__underlying_strncat(char *p, const char *q, __kernel_size_t count) __RENAME(strncat);
100 extern char *__underlying_strncpy(char *p, const char *q, __kernel_size_t size) __RENAME(strncpy);
197 char *strncpy(char * const POS p, const char *q, __kernel_size_t size) in strncpy() argument
205 return __underlying_strncpy(p, q, size); in strncpy()
277 __FORTIFY_INLINE ssize_t sized_strscpy(char * const POS p, const char * const POS q, size_t size) in sized_strscpy() argument
281 const size_t q_size = __member_size(q); in sized_strscpy()
286 return __real_strscpy(p, q, size); in sized_strscpy()
297 len = __compiletime_strlen(q); in sized_strscpy()
300 __underlying_memcpy(p, q, len + 1); in sized_strscpy()
309 len = strnlen(q, size); in sized_strscpy()
329 return __real_strscpy(p, q, len); in sized_strscpy()
333 extern size_t __real_strlcat(char *p, const char *q, size_t avail) __RENAME(strlcat);
359 size_t strlcat(char * const POS p, const char * const POS q, size_t avail) in strlcat() argument
362 const size_t q_size = __member_size(q); in strlcat()
368 return __real_strlcat(p, q, avail); in strlcat()
371 copy_len = strlen(q); in strlcat()
390 __underlying_memcpy(p + p_len, q, copy_len); in strlcat()
413 char *strcat(char * const POS p, const char *q) in strcat() argument
416 const size_t wanted = strlcat(p, q, p_size); in strcat()
444 char *strncat(char * const POS p, const char * const POS q, __kernel_size_t count) in strncat() argument
447 const size_t q_size = __member_size(q); in strncat()
451 return __underlying_strncat(p, q, count); in strncat()
453 copy_len = strnlen(q, count); in strncat()
457 __underlying_memcpy(p + p_len, q, copy_len); in strncat()
619 #define __fortify_memcpy_chk(p, q, size, p_size, q_size, \ argument
633 __underlying_##op(p, q, __fortify_size); \
678 #define memcpy(p, q, s) __fortify_memcpy_chk(p, q, s, \ argument
679 __struct_size(p), __struct_size(q), \
680 __member_size(p), __member_size(q), \
682 #define memmove(p, q, s) __fortify_memcpy_chk(p, q, s, \ argument
683 __struct_size(p), __struct_size(q), \
684 __member_size(p), __member_size(q), \
700 int memcmp(const void * const POS0 p, const void * const POS0 q, __kernel_size_t size) in memcmp() argument
703 const size_t q_size = __struct_size(q); in memcmp()
715 return __underlying_memcmp(p, q, size); in memcmp()
773 char *strcpy(char * const POS p, const char * const POS q) in strcpy() argument
776 const size_t q_size = __member_size(q); in strcpy()
783 return __underlying_strcpy(p, q); in strcpy()
784 size = strlen(q) + 1; in strcpy()
791 __underlying_memcpy(p, q, size); in strcpy()