Lines Matching refs:from
110 instrument_copy_to_user(void __user *to, const void *from, unsigned long n) in instrument_copy_to_user() argument
112 kasan_check_read(from, n); in instrument_copy_to_user()
113 kcsan_check_read(from, n); in instrument_copy_to_user()
114 kmsan_copy_to_user(to, from, n, 0); in instrument_copy_to_user()
127 instrument_copy_from_user_before(const void *to, const void __user *from, unsigned long n) in instrument_copy_from_user_before() argument
144 instrument_copy_from_user_after(const void *to, const void __user *from, in instrument_copy_from_user_after() argument
159 static __always_inline void instrument_memcpy_before(void *to, const void *from, in instrument_memcpy_before() argument
163 kasan_check_read(from, n); in instrument_memcpy_before()
165 kcsan_check_read(from, n); in instrument_memcpy_before()
178 static __always_inline void instrument_memcpy_after(void *to, const void *from, in instrument_memcpy_after() argument
182 kmsan_memmove(to, from, n - left); in instrument_memcpy_after()
211 #define instrument_put_user(from, ptr, size) \ argument
213 kmsan_copy_to_user(ptr, &from, sizeof(from), 0); \