Lines Matching refs:__user
62 static inline int access_ok(const void __user *addr, unsigned long size) in access_ok()
90 extern unsigned long __copy_tofrom_user(void __user *to,
91 const void __user *from, unsigned long size);
94 static inline unsigned long __must_check __clear_user(void __user *to, in __clear_user()
113 static inline unsigned long __must_check clear_user(void __user *to, in clear_user()
163 const typeof(*(ptr)) __user *__gu_ptr = (ptr); \
256 typeof(*(ptr)) __user *__pu_addr = (ptr); \
310 raw_copy_from_user(void *to, const void __user *from, unsigned long n) in raw_copy_from_user()
312 return __copy_tofrom_user((__force void __user *)to, from, n); in raw_copy_from_user()
316 raw_copy_to_user(void __user *to, const void *from, unsigned long n) in raw_copy_to_user()
318 return __copy_tofrom_user(to, (__force const void __user *)from, n); in raw_copy_to_user()
326 extern int __strncpy_user(char *to, const char __user *from, int len);
329 strncpy_from_user(char *dst, const char __user *src, long count) in strncpy_from_user()
341 extern int __strnlen_user(const char __user *sstr, int len);
343 static inline long strnlen_user(const char __user *src, long n) in strnlen_user()