Lines Matching refs:from
5 * This file was copied from include/asm-generic/uaccess.h
112 * __get_user: - Get a simple variable from user space, with less checking.
118 * This macro copies a single simple variable from user space to kernel
146 * get_user: - Get a simple variable from user space.
152 * This macro copies a single simple variable from user space to kernel
233 * This macro copies a single simple value from kernel space to user
269 * This macro copies a single simple value from kernel space to user
289 const void *from, unsigned long n);
291 const void __user *from, unsigned long n);
294 raw_copy_from_user(void *to, const void __user *from, unsigned long n)
296 return __asm_copy_from_user(to, from, n);
300 raw_copy_to_user(void __user *to, const void *from, unsigned long n)
302 return __asm_copy_to_user(to, from, n);