Lines Matching refs:data
256 void __user **ubuf, const void *data, in user_regset_copyout() argument
265 data += *pos - start_pos; in user_regset_copyout()
267 memcpy(*kbuf, data, copy); in user_regset_copyout()
269 } else if (__copy_to_user(*ubuf, data, copy)) in user_regset_copyout()
281 const void __user **ubuf, void *data, in user_regset_copyin() argument
290 data += *pos - start_pos; in user_regset_copyin()
292 memcpy(data, *kbuf, copy); in user_regset_copyin()
294 } else if (__copy_from_user(data, *ubuf, copy)) in user_regset_copyin()
369 void __user *data) in copy_regset_to_user() argument
376 if (!access_ok(data, size)) in copy_regset_to_user()
379 return regset->get(target, regset, offset, size, NULL, data); in copy_regset_to_user()
395 const void __user *data) in copy_regset_from_user() argument
402 if (!access_ok(data, size)) in copy_regset_from_user()
405 return regset->set(target, regset, offset, size, NULL, data); in copy_regset_from_user()