Lines Matching refs:from
74 * get_user: - Get a simple variable from user space.
81 * This macro copies a single simple variable from user space to kernel
108 * This macro copies a single simple value from kernel space to user
126 * __get_user: - Get a simple variable from user space, with less checking.
133 * This macro copies a single simple variable from user space to kernel
163 * This macro copies a single simple value from kernel space to user
324 extern unsigned long __copy_user(void *to, const void *from, __kernel_size_t n);
327 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
329 return __copy_user(to, (__force const void *)from, n);
333 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
335 return __copy_user((__force void *)to, from, n);