/Linux-v4.19/arch/um/include/asm/ |
D | uaccess.h | 29 static inline int __access_ok(unsigned long addr, unsigned long size); 32 #define __access_ok __access_ok macro 41 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function
|
/Linux-v4.19/arch/ia64/include/asm/ |
D | uaccess.h | 63 static inline int __access_ok(const void __user *p, unsigned long size) in __access_ok() function 70 #define access_ok(type, addr, size) __access_ok((addr), (size)) 154 if (!check || __access_ok(__gu_ptr, size)) \ 182 if (!check || __access_ok(__pu_ptr, __pu_size)) \ 224 if (__access_ok(to, __cu_len)) \ 240 if (__access_ok(__sfu_from, 0)) \ 256 if (__access_ok(__su_str, 0)) \
|
/Linux-v4.19/arch/sparc/include/asm/ |
D | uaccess_32.h | 41 #define __access_ok(addr, size) (__user_ok((addr) & get_fs().seg, (size))) macro 43 ({ (void)(type); __access_ok((unsigned long)(addr), size); }) 111 if (__access_ok(addr, size)) { \ 171 if (__access_ok(addr, size)) { \ 275 if (n && __access_ok((unsigned long) addr, n)) in clear_user()
|
D | uaccess_64.h | 66 static inline int __access_ok(const void __user * addr, unsigned long size) in __access_ok() function
|
/Linux-v4.19/arch/alpha/include/asm/ |
D | uaccess.h | 36 #define __access_ok(addr, size) \ macro 42 __access_ok(((unsigned long)(addr)), (size)); \ 107 if (__access_ok((unsigned long)__gu_addr, size)) { \ 202 if (__access_ok((unsigned long)__pu_addr, size)) { \ 321 if (__access_ok((unsigned long)to, len)) in clear_user()
|
/Linux-v4.19/include/asm-generic/ |
D | uaccess.h | 38 #define access_ok(type, addr, size) __access_ok((unsigned long)(addr),(size)) 44 #ifndef __access_ok 45 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function
|
/Linux-v4.19/arch/sh/include/asm/ |
D | uaccess.h | 19 #define __access_ok(addr, size) \ macro 23 __access_ok((unsigned long __force)(addr), (size)))
|
/Linux-v4.19/arch/nios2/include/asm/ |
D | uaccess.h | 36 #define __access_ok(addr, len) \ macro 41 likely(__access_ok((unsigned long)(addr), (unsigned long)(len)))
|
/Linux-v4.19/arch/powerpc/include/asm/ |
D | uaccess.h | 50 #define __access_ok(addr, size, segment) \ macro 55 static inline int __access_ok(unsigned long addr, unsigned long size, in __access_ok() function 67 __access_ok((__force unsigned long)(addr), (size), get_fs()))
|
/Linux-v4.19/arch/s390/include/asm/ |
D | uaccess.h | 45 #define __access_ok(addr, size) \ macro 51 #define access_ok(type, addr, size) __access_ok(addr, size)
|
/Linux-v4.19/arch/xtensa/include/asm/ |
D | uaccess.h | 44 #define __access_ok(addr, size) (__kernel_ok || __user_ok((addr), (size))) macro 45 #define access_ok(type, addr, size) __access_ok((unsigned long)(addr), (size))
|
/Linux-v4.19/arch/unicore32/include/asm/ |
D | uaccess.h | 24 #define __access_ok(addr, size) (__kernel_ok || __user_ok((addr), (size))) macro
|
/Linux-v4.19/arch/c6x/include/asm/ |
D | uaccess.h | 95 #define __access_ok _access_ok macro
|
/Linux-v4.19/arch/hexagon/include/asm/ |
D | uaccess.h | 53 #define __access_ok(addr, size) \ macro
|
/Linux-v4.19/arch/riscv/include/asm/ |
D | uaccess.h | 81 likely(__access_ok((unsigned long __force)(addr), (size))); \ 88 static inline int __access_ok(unsigned long addr, unsigned long size) in __access_ok() function
|
/Linux-v4.19/arch/mips/include/asm/ |
D | uaccess.h | 131 static inline int __access_ok(const void __user *p, unsigned long size) in __access_ok() function 138 likely(__access_ok((addr), (size)))
|
/Linux-v4.19/arch/arc/include/asm/ |
D | uaccess.h | 55 #define __access_ok(addr, sz) (unlikely(__kernel_ok) || \ macro
|
/Linux-v4.19/arch/sparc/kernel/ |
D | signal_32.c | 70 if ((((unsigned long) fp) & 15) || !__access_ok((unsigned long)fp, fplen)) in invalid_frame_pointer()
|
D | signal_64.c | 56 (!__access_ok(ucp, sizeof(*ucp)))) in sparc64_set_context()
|
/Linux-v4.19/sound/pci/ac97/ |
D | ac97_codec.c | 2064 goto __access_ok; in snd_ac97_mixer() 2072 goto __access_ok; in snd_ac97_mixer() 2098 __access_ok: in snd_ac97_mixer()
|
/Linux-v4.19/arch/powerpc/lib/ |
D | sstep.c | 113 if (__access_ok(ea, nb, USER_DS)) in address_ok() 115 if (__access_ok(ea, 1, USER_DS)) in address_ok()
|
/Linux-v4.19/arch/powerpc/kernel/ |
D | process.c | 1313 if (!__access_ok(pc, instructions_to_print * sizeof(int), USER_DS)) { in show_user_instructions()
|