Lines Matching defs:from
95 * which read from user space (*get_*) need to take care not to leak
510 arm_copy_from_user(void *to, const void __user *from, unsigned long n);
513 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
518 n = arm_copy_from_user(to, from, n);
524 arm_copy_to_user(void __user *to, const void *from, unsigned long n);
526 __copy_to_user_std(void __user *to, const void *from, unsigned long n);
529 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
534 n = arm_copy_to_user(to, from, n);
538 return arm_copy_to_user(to, from, n);
558 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
560 memcpy(to, (const void __force *)from, n);
564 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
566 memcpy((void __force *)to, from, n);
581 /* These are from lib/ code, and use __get_user() and friends */