/arch/um/include/asm/ |
D | uaccess.h | 27 static inline int __access_ok(unsigned long addr, unsigned long size); 30 #define __access_ok __access_ok macro 38 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function
|
/arch/hexagon/include/asm/ |
D | uaccess.h | 32 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function 38 #define __access_ok __access_ok macro
|
/arch/ia64/include/asm/ |
D | uaccess.h | 61 static inline int __access_ok(const void __user *p, unsigned long size) in __access_ok() function 68 #define access_ok(addr, size) __access_ok((addr), (size)) 152 if (!check || __access_ok(__gu_ptr, size)) \ 180 if (!check || __access_ok(__pu_ptr, __pu_size)) \ 222 if (__access_ok(to, __cu_len)) \ 238 if (__access_ok(__sfu_from, 0)) \ 254 if (__access_ok(__su_str, 0)) \
|
/arch/sparc/include/asm/ |
D | uaccess_32.h | 37 #define __access_ok(addr, size) (__user_ok((addr) & get_fs().seg, (size))) macro 38 #define access_ok(addr, size) __access_ok((unsigned long)(addr), size) 76 if (__access_ok(addr, size)) { \ 136 if (__access_ok(addr, size)) { \ 235 if (n && __access_ok((unsigned long) addr, n)) in clear_user()
|
D | uaccess_64.h | 64 static inline int __access_ok(const void __user * addr, unsigned long size) in __access_ok() function
|
/arch/alpha/include/asm/ |
D | uaccess.h | 35 #define __access_ok(addr, size) ({ \ macro 43 __access_ok(((unsigned long)(addr)), (size)); \ 108 if (__access_ok((unsigned long)__gu_addr, size)) { \ 203 if (__access_ok((unsigned long)__pu_addr, size)) { \ 322 if (__access_ok((unsigned long)to, len)) in clear_user()
|
/arch/csky/include/asm/ |
D | uaccess.h | 8 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function 14 #define __access_ok __access_ok macro
|
/arch/nios2/include/asm/ |
D | uaccess.h | 35 #define __access_ok(addr, len) \ macro 40 likely(__access_ok((unsigned long)(addr), (unsigned long)(len)))
|
/arch/sh/include/asm/ |
D | uaccess.h | 19 #define __access_ok(addr, size) ({ \ macro 26 __access_ok((unsigned long __force)(addr), (size)))
|
/arch/microblaze/include/asm/ |
D | uaccess.h | 42 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function 48 #define access_ok(addr, size) __access_ok((unsigned long)addr, size)
|
/arch/xtensa/include/asm/ |
D | uaccess.h | 43 #define __access_ok(addr, size) (__kernel_ok || __user_ok((addr), (size))) macro 44 #define access_ok(addr, size) __access_ok((unsigned long)(addr), (size))
|
/arch/s390/include/asm/ |
D | uaccess.h | 28 #define __access_ok(addr, size) \ macro 34 #define access_ok(addr, size) __access_ok(addr, size)
|
/arch/riscv/include/asm/ |
D | uaccess.h | 47 likely(__access_ok((unsigned long __force)(addr), (size))); \ 54 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function
|
/arch/mips/include/asm/ |
D | uaccess.h | 79 static inline int __access_ok(const void __user *p, unsigned long size) in __access_ok() function 88 likely(__access_ok((addr), (size)))
|
/arch/arc/include/asm/ |
D | uaccess.h | 52 #define __access_ok(addr, sz) (unlikely(__kernel_ok) || \ macro
|
/arch/powerpc/include/asm/ |
D | uaccess.h | 18 static inline bool __access_ok(unsigned long addr, unsigned long size) in __access_ok() function 25 __access_ok((unsigned long)(addr), (size)))
|
/arch/sparc/kernel/ |
D | signal_64.c | 55 (!__access_ok(ucp, sizeof(*ucp)))) in sparc64_set_context()
|