Lines Matching defs:from
5 * This file was copied from include/asm-generic/uaccess.h
163 * __get_user: - Get a simple variable from user space, with less checking.
169 * This macro copies a single simple variable from user space to kernel
197 * get_user: - Get a simple variable from user space.
203 * This macro copies a single simple variable from user space to kernel
304 * This macro copies a single simple value from kernel space to user
340 * This macro copies a single simple value from kernel space to user
360 const void *from, unsigned long n);
362 const void __user *from, unsigned long n);
365 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
367 return __asm_copy_from_user(to, from, n);
371 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
373 return __asm_copy_to_user(to, from, n);