Lines Matching refs:from
91 const void __user *from, unsigned long size);
145 * get_user: - Get a simple variable from user space.
152 * This macro copies a single simple variable from user space to kernel
241 * This macro copies a single simple value from kernel space to user
310 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
312 return __copy_tofrom_user((__force void __user *)to, from, n);
316 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
318 return __copy_tofrom_user(to, (__force const void __user *)from, n);
324 * Copy a null terminated string from userspace.
326 extern int __strncpy_user(char *to, const char __user *from, int len);