Lines Matching refs:from
123 const void __user *from, unsigned long size);
367 #define __copy_from_user(to, from, n) \ argument
369 (void __user *)(from), (n))
370 #define __copy_from_user_inatomic(to, from, n) \ argument
371 __copy_from_user((to), (from), (n))
374 const void __user *from, unsigned long n) in copy_from_user() argument
377 if (access_ok(VERIFY_READ, from, n)) in copy_from_user()
378 return __copy_from_user(to, from, n); in copy_from_user()
382 #define __copy_to_user(to, from, n) \ argument
384 (__force const void __user *)(from), (n))
385 #define __copy_to_user_inatomic(to, from, n) __copy_to_user((to), (from), (n)) argument
388 const void *from, unsigned long n) in copy_to_user() argument
392 return __copy_to_user(to, from, n); in copy_to_user()
399 extern int __strncpy_user(char *to, const char __user *from, int len);