Lines Matching refs:from
224 const void __user *from,
226 unsigned long copy_from_user_fixup(void *to, const void __user *from,
229 copy_from_user(void *to, const void __user *from, unsigned long size) in copy_from_user() argument
231 unsigned long ret = ___copy_from_user(to, from, size); in copy_from_user()
234 ret = copy_from_user_fixup(to, from, size); in copy_from_user()
241 const void *from,
243 unsigned long copy_to_user_fixup(void __user *to, const void *from,
246 copy_to_user(void __user *to, const void *from, unsigned long size) in copy_to_user() argument
248 unsigned long ret = ___copy_to_user(to, from, size); in copy_to_user()
251 ret = copy_to_user_fixup(to, from, size); in copy_to_user()
257 const void __user *from,
259 unsigned long copy_in_user_fixup(void __user *to, void __user *from,
262 copy_in_user(void __user *to, void __user *from, unsigned long size) in copy_in_user() argument
264 unsigned long ret = ___copy_in_user(to, from, size); in copy_in_user()
267 ret = copy_in_user_fixup(to, from, size); in copy_in_user()